@iblai/web-utils 1.11.8 → 1.11.10

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 (300) hide show
  1. package/dist/auth/index.esm.js.map +1 -1
  2. package/dist/auth/index.js.map +1 -1
  3. package/dist/auth/web-utils/src/__tests__/index.mobile.test.d.ts +7 -0
  4. package/dist/auth/web-utils/src/__tests__/index.web.test.d.ts +8 -0
  5. package/dist/auth/web-utils/src/constants/__tests__/chat.test.d.ts +1 -0
  6. package/dist/auth/web-utils/src/constants/chat.d.ts +8 -0
  7. package/dist/auth/web-utils/src/features/apple-restriction/__tests__/slice.test.d.ts +1 -0
  8. package/dist/auth/web-utils/src/features/apple-restriction/slice.d.ts +7 -0
  9. package/dist/auth/web-utils/src/features/chat/__tests__/slice.test.d.ts +1 -0
  10. package/dist/auth/web-utils/src/features/chat/slice.d.ts +164 -0
  11. package/dist/auth/web-utils/src/features/chat-input/__tests__/api-slice.test.d.ts +1 -0
  12. package/dist/auth/web-utils/src/features/chat-input/api-slice.d.ts +12 -0
  13. package/dist/auth/web-utils/src/features/csv/combine-csv.d.ts +35 -0
  14. package/dist/auth/web-utils/src/features/csv/index.d.ts +1 -0
  15. package/dist/auth/web-utils/src/features/files/__tests__/filesSlice.test.d.ts +1 -0
  16. package/dist/auth/web-utils/src/features/files/filesSlice.d.ts +23 -0
  17. package/dist/auth/web-utils/src/features/host-chat/__tests__/slice.test.d.ts +1 -0
  18. package/dist/auth/web-utils/src/features/host-chat/slice.d.ts +17 -0
  19. package/dist/auth/web-utils/src/features/index.d.ts +11 -0
  20. package/dist/auth/web-utils/src/features/monetization/__tests__/slice.test.d.ts +1 -0
  21. package/dist/auth/web-utils/src/features/monetization/slice.d.ts +16 -0
  22. package/dist/auth/web-utils/src/features/rbac/__tests__/rbac-slice.test.d.ts +1 -0
  23. package/dist/auth/web-utils/src/features/rbac/rbac-slice.d.ts +13 -0
  24. package/dist/auth/web-utils/src/features/subscription/__tests__/slice.test.d.ts +1 -0
  25. package/dist/auth/web-utils/src/features/subscription/constants.d.ts +12 -0
  26. package/dist/auth/web-utils/src/features/subscription/slice.d.ts +28 -0
  27. package/dist/auth/web-utils/src/features/top-banner/__tests__/slice.test.d.ts +1 -0
  28. package/dist/auth/web-utils/src/features/top-banner/slice.d.ts +24 -0
  29. package/dist/auth/web-utils/src/features/tracking/__tests__/time-tracker.test.d.ts +1 -0
  30. package/dist/auth/web-utils/src/features/tracking/examples.d.ts +4 -0
  31. package/dist/auth/web-utils/src/features/tracking/index.d.ts +6 -0
  32. package/dist/auth/web-utils/src/features/tracking/time-tracker.d.ts +29 -0
  33. package/dist/auth/web-utils/src/features/tracking/use-time-tracker-native.d.ts +14 -0
  34. package/dist/auth/web-utils/src/features/tracking/use-time-tracker.d.ts +14 -0
  35. package/dist/auth/web-utils/src/hoc/index.d.ts +2 -0
  36. package/dist/auth/web-utils/src/hoc/with-permissions.d.ts +44 -0
  37. package/dist/auth/web-utils/src/hooks/__tests__/use-accessing-public-route.test.d.ts +1 -0
  38. package/dist/auth/web-utils/src/hooks/__tests__/use-cached-session-id.test.d.ts +1 -0
  39. package/dist/auth/web-utils/src/hooks/__tests__/use-chat-file-upload.test.d.ts +1 -0
  40. package/dist/auth/web-utils/src/hooks/__tests__/use-embed-mode.test.d.ts +1 -0
  41. package/dist/auth/web-utils/src/hooks/__tests__/use-event-callback.test.d.ts +1 -0
  42. package/dist/auth/web-utils/src/hooks/__tests__/use-event-listener.test.d.ts +1 -0
  43. package/dist/auth/web-utils/src/hooks/__tests__/use-file-drag-drop.test.d.ts +1 -0
  44. package/dist/auth/web-utils/src/hooks/__tests__/use-local-storage.test.d.ts +1 -0
  45. package/dist/auth/web-utils/src/hooks/__tests__/use-mentor-settings.test.d.ts +1 -0
  46. package/dist/auth/web-utils/src/hooks/__tests__/use-model-file-upload-capabilities.test.d.ts +1 -0
  47. package/dist/auth/web-utils/src/hooks/__tests__/use-os.test.d.ts +1 -0
  48. package/dist/auth/web-utils/src/hooks/__tests__/use-responsive.test.d.ts +1 -0
  49. package/dist/auth/web-utils/src/hooks/__tests__/use-show-attachment.test.d.ts +1 -0
  50. package/dist/auth/web-utils/src/hooks/__tests__/use-show-free-trial-dialog.test.d.ts +1 -0
  51. package/dist/auth/web-utils/src/hooks/__tests__/use-show-voice-call.test.d.ts +1 -0
  52. package/dist/auth/web-utils/src/hooks/__tests__/use-show-voice-recorder.test.d.ts +1 -0
  53. package/dist/auth/web-utils/src/hooks/__tests__/use-timer.test.d.ts +1 -0
  54. package/dist/auth/web-utils/src/hooks/__tests__/use-tokens.test.d.ts +1 -0
  55. package/dist/auth/web-utils/src/hooks/__tests__/use-user-agreement.test.d.ts +1 -0
  56. package/dist/auth/web-utils/src/hooks/__tests__/use-user.test.d.ts +1 -0
  57. package/dist/auth/web-utils/src/hooks/__tests__/use-voice-chat.test.d.ts +1 -0
  58. package/dist/auth/web-utils/src/hooks/__tests__/use-welcome-message.test.d.ts +1 -0
  59. package/dist/auth/web-utils/src/hooks/chat/__tests__/chat-history.utils.test.d.ts +1 -0
  60. package/dist/auth/web-utils/src/hooks/chat/chat-history.utils.d.ts +10 -0
  61. package/dist/auth/web-utils/src/hooks/chat/ollama-client.d.ts +57 -0
  62. package/dist/auth/web-utils/src/hooks/chat/use-advanced-chat.d.ts +61 -0
  63. package/dist/auth/web-utils/src/hooks/chat/use-advanced-chat.test.d.ts +1 -0
  64. package/dist/auth/web-utils/src/hooks/chat/use-chat-history.d.ts +17 -0
  65. package/dist/auth/web-utils/src/hooks/chat/use-chat-v2.d.ts +146 -0
  66. package/dist/auth/web-utils/src/hooks/chat/use-chat-v2.test.d.ts +1 -0
  67. package/dist/auth/web-utils/src/hooks/chat/use-chat.d.ts +53 -0
  68. package/dist/auth/web-utils/src/hooks/chat/use-get-chat-details.d.ts +14 -0
  69. package/dist/auth/web-utils/src/hooks/chat/use-get-chat-details.test.d.ts +1 -0
  70. package/dist/auth/web-utils/src/hooks/chat/use-mentor-tools.d.ts +24 -0
  71. package/dist/auth/web-utils/src/hooks/chat/use-mentor-tools.test.d.ts +1 -0
  72. package/dist/auth/web-utils/src/hooks/index.d.ts +42 -0
  73. package/dist/auth/web-utils/src/hooks/profile/use-profile-image-upload.d.ts +13 -0
  74. package/dist/auth/web-utils/src/hooks/profile/use-user-profile-update.d.ts +28 -0
  75. package/dist/auth/web-utils/src/hooks/stripe/__tests__/use-stripe-upgrade.test.d.ts +1 -0
  76. package/dist/auth/web-utils/src/hooks/stripe/use-stripe-upgrade.d.ts +14 -0
  77. package/dist/auth/web-utils/src/hooks/subscription/class-subscription-flow.d.ts +70 -0
  78. package/dist/auth/web-utils/src/hooks/subscription/constants.d.ts +4 -0
  79. package/dist/auth/web-utils/src/hooks/subscription/use-subscription-handler.d.ts +11 -0
  80. package/dist/auth/web-utils/src/hooks/subscription-v2/__tests__/use-402-error-check.test.d.ts +1 -0
  81. package/dist/auth/web-utils/src/hooks/subscription-v2/class-subscription-flow.d.ts +78 -0
  82. package/dist/auth/web-utils/src/hooks/subscription-v2/constants.d.ts +56 -0
  83. package/dist/auth/web-utils/src/hooks/subscription-v2/use-402-error-check.d.ts +22 -0
  84. package/dist/auth/web-utils/src/hooks/subscription-v2/use-external-pricing-plan.d.ts +7 -0
  85. package/dist/auth/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +71 -0
  86. package/dist/auth/web-utils/src/hooks/tenant-metadata/__tests__/config-loader.test.d.ts +10 -0
  87. package/dist/auth/web-utils/src/hooks/tenant-metadata/__tests__/use-tenant-metadata.test.d.ts +1 -0
  88. package/dist/auth/web-utils/src/hooks/tenant-metadata/config-loader.d.ts +41 -0
  89. package/dist/auth/web-utils/src/hooks/tenant-metadata/constants.d.ts +9 -0
  90. package/dist/auth/web-utils/src/hooks/tenant-metadata/index.d.ts +5 -0
  91. package/dist/auth/web-utils/src/hooks/tenant-metadata/types.d.ts +9 -0
  92. package/dist/auth/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +29 -0
  93. package/dist/auth/web-utils/src/hooks/use-accessing-public-route.d.ts +1 -0
  94. package/dist/auth/web-utils/src/hooks/use-cached-session-id.d.ts +8 -0
  95. package/dist/auth/web-utils/src/hooks/use-chat-file-upload.d.ts +17 -0
  96. package/dist/auth/web-utils/src/hooks/use-day-js.d.ts +7 -0
  97. package/dist/auth/web-utils/src/hooks/use-embed-mode.d.ts +1 -0
  98. package/dist/auth/web-utils/src/hooks/use-event-callback.d.ts +2 -0
  99. package/dist/auth/web-utils/src/hooks/use-event-listener.d.ts +6 -0
  100. package/dist/auth/web-utils/src/hooks/use-file-drag-drop.d.ts +15 -0
  101. package/dist/auth/web-utils/src/hooks/use-isomorphic-layout-effect.d.ts +2 -0
  102. package/dist/auth/web-utils/src/hooks/use-local-storage.d.ts +13 -0
  103. package/dist/auth/web-utils/src/hooks/use-mentor-settings.d.ts +46 -0
  104. package/dist/auth/web-utils/src/hooks/use-model-file-upload-capabilities.d.ts +21 -0
  105. package/dist/auth/web-utils/src/hooks/use-os.d.ts +8 -0
  106. package/dist/auth/web-utils/src/hooks/use-responsive.d.ts +13 -0
  107. package/dist/auth/web-utils/src/hooks/use-show-attachment.d.ts +7 -0
  108. package/dist/auth/web-utils/src/hooks/use-show-free-trial-dialog.d.ts +31 -0
  109. package/dist/auth/web-utils/src/hooks/use-show-voice-call.d.ts +7 -0
  110. package/dist/auth/web-utils/src/hooks/use-show-voice-recorder.d.ts +7 -0
  111. package/dist/auth/web-utils/src/hooks/use-tenant-switch-sync.d.ts +13 -0
  112. package/dist/auth/web-utils/src/hooks/use-timer.d.ts +7 -0
  113. package/dist/auth/web-utils/src/hooks/use-tokens.d.ts +2 -0
  114. package/dist/auth/web-utils/src/hooks/use-user-agreement.d.ts +18 -0
  115. package/dist/auth/web-utils/src/hooks/use-user.d.ts +23 -0
  116. package/dist/auth/web-utils/src/hooks/use-voice-chat.d.ts +11 -0
  117. package/dist/auth/web-utils/src/hooks/use-welcome-message.d.ts +16 -0
  118. package/dist/auth/web-utils/src/index.d.ts +8 -0
  119. package/dist/auth/web-utils/src/index.mobile.d.ts +86 -0
  120. package/dist/auth/web-utils/src/index.web.d.ts +142 -0
  121. package/dist/auth/web-utils/src/providers/__tests__/auth-provider.test.d.ts +1 -0
  122. package/dist/auth/web-utils/src/providers/__tests__/mentor-provider.test.d.ts +1 -0
  123. package/dist/auth/web-utils/src/providers/__tests__/service-worker-provider.test.d.ts +1 -0
  124. package/dist/auth/web-utils/src/providers/__tests__/tenant-provider.test.d.ts +1 -0
  125. package/dist/auth/web-utils/src/providers/auth-provider.d.ts +129 -0
  126. package/dist/auth/web-utils/src/providers/index.d.ts +4 -0
  127. package/dist/auth/web-utils/src/providers/mentor-provider.d.ts +44 -0
  128. package/dist/auth/web-utils/src/providers/service-worker-provider.d.ts +21 -0
  129. package/dist/auth/web-utils/src/providers/tenant-provider.d.ts +77 -0
  130. package/dist/auth/web-utils/src/services/__tests__/event-bus.test.d.ts +1 -0
  131. package/dist/auth/web-utils/src/services/__tests__/file-upload.test.d.ts +1 -0
  132. package/dist/auth/web-utils/src/services/__tests__/register-sw.test.d.ts +1 -0
  133. package/dist/auth/web-utils/src/services/event-bus.d.ts +6 -0
  134. package/dist/auth/web-utils/src/services/file-upload.d.ts +60 -0
  135. package/dist/auth/web-utils/src/services/index.d.ts +3 -0
  136. package/dist/auth/web-utils/src/services/register-sw.d.ts +71 -0
  137. package/dist/auth/web-utils/src/types/chat.d.ts +1 -0
  138. package/dist/auth/web-utils/src/types/file-upload.d.ts +62 -0
  139. package/dist/auth/web-utils/src/types/index.d.ts +68 -0
  140. package/dist/auth/web-utils/src/types/subscription.d.ts +40 -0
  141. package/dist/auth/web-utils/src/utils/__tests__/auth.test.d.ts +1 -0
  142. package/dist/auth/web-utils/src/utils/__tests__/constants.test.d.ts +1 -0
  143. package/dist/auth/web-utils/src/utils/__tests__/helpers.test.d.ts +1 -0
  144. package/dist/auth/web-utils/src/utils/__tests__/platform.test.d.ts +1 -0
  145. package/dist/auth/web-utils/src/utils/__tests__/tauri-api-cache.test.d.ts +1 -0
  146. package/dist/auth/web-utils/src/utils/__tests__/tenant-switch.test.d.ts +1 -0
  147. package/dist/auth/web-utils/src/utils/constants.d.ts +69 -0
  148. package/dist/auth/web-utils/src/utils/data/__tests__/advanced-tab.test.d.ts +1 -0
  149. package/dist/auth/web-utils/src/utils/data/advanced-tab.d.ts +62 -0
  150. package/dist/auth/web-utils/src/utils/helpers.d.ts +33 -0
  151. package/dist/auth/web-utils/src/utils/index.d.ts +6 -0
  152. package/dist/auth/web-utils/src/utils/platform.d.ts +9 -0
  153. package/dist/auth/web-utils/src/utils/tauri-api-cache.d.ts +19 -0
  154. package/dist/index.esm.js +575 -262
  155. package/dist/index.esm.js.map +1 -1
  156. package/dist/index.js +588 -275
  157. package/dist/index.js.map +1 -1
  158. package/dist/package.json +1 -2
  159. package/dist/web-utils/src/hooks/chat/use-advanced-chat.d.ts +4 -4
  160. package/dist/web-utils/src/hooks/subscription-v2/use-subscription-handler.d.ts +3 -3
  161. package/dist/web-utils/src/hooks/tenant-metadata/use-tenant-metadata.d.ts +3 -3
  162. package/dist/web-utils/src/hooks/use-isomorphic-layout-effect.d.ts +2 -2
  163. package/dist/web-utils/src/hooks/use-mentor-settings.d.ts +21 -21
  164. package/dist/web-utils/src/hooks/use-user-agreement.d.ts +3 -6
  165. package/dist/web-utils/tsconfig.tsbuildinfo +1 -0
  166. package/package.json +1 -2
  167. package/dist/data-layer/src/config.d.ts +0 -8
  168. package/dist/data-layer/src/constants.d.ts +0 -31
  169. package/dist/data-layer/src/core/index.d.ts +0 -11
  170. package/dist/data-layer/src/features/analytics/api-slice.d.ts +0 -3756
  171. package/dist/data-layer/src/features/analytics/constants.d.ts +0 -133
  172. package/dist/data-layer/src/features/analytics/custom-api-slice.d.ts +0 -8
  173. package/dist/data-layer/src/features/analytics/types.d.ts +0 -696
  174. package/dist/data-layer/src/features/api-keys/api-slice.d.ts +0 -702
  175. package/dist/data-layer/src/features/apps/api-slice.d.ts +0 -720
  176. package/dist/data-layer/src/features/artifacts/api-slice.d.ts +0 -1798
  177. package/dist/data-layer/src/features/artifacts/constants.d.ts +0 -42
  178. package/dist/data-layer/src/features/artifacts/types.d.ts +0 -37
  179. package/dist/data-layer/src/features/audit-logs/api-slice.d.ts +0 -268
  180. package/dist/data-layer/src/features/audit-logs/constants.d.ts +0 -11
  181. package/dist/data-layer/src/features/audit-logs/types.d.ts +0 -32
  182. package/dist/data-layer/src/features/auth/api-slice.d.ts +0 -639
  183. package/dist/data-layer/src/features/auth/constants.d.ts +0 -20
  184. package/dist/data-layer/src/features/auth/types.d.ts +0 -33
  185. package/dist/data-layer/src/features/billing/api-slice.d.ts +0 -359
  186. package/dist/data-layer/src/features/billing/constants.d.ts +0 -16
  187. package/dist/data-layer/src/features/billing/custom-api-slice.d.ts +0 -634
  188. package/dist/data-layer/src/features/billing/types.d.ts +0 -36
  189. package/dist/data-layer/src/features/call-configurations/api-slice.d.ts +0 -855
  190. package/dist/data-layer/src/features/call-configurations/constants.d.ts +0 -16
  191. package/dist/data-layer/src/features/call-configurations/types.d.ts +0 -49
  192. package/dist/data-layer/src/features/career/api-slice.d.ts +0 -3080
  193. package/dist/data-layer/src/features/catalog/api-slice.d.ts +0 -10260
  194. package/dist/data-layer/src/features/chat/api-slice.d.ts +0 -1977
  195. package/dist/data-layer/src/features/chat/constants.d.ts +0 -8
  196. package/dist/data-layer/src/features/chat/custom-api-slice.d.ts +0 -272
  197. package/dist/data-layer/src/features/chat-files/api-slice.d.ts +0 -185
  198. package/dist/data-layer/src/features/chat-files/types.d.ts +0 -32
  199. package/dist/data-layer/src/features/chat-history/api-slice.d.ts +0 -1528
  200. package/dist/data-layer/src/features/chat-privacy/api-slice.d.ts +0 -1398
  201. package/dist/data-layer/src/features/chat-privacy/constants.d.ts +0 -13
  202. package/dist/data-layer/src/features/claw/api-slice.d.ts +0 -5471
  203. package/dist/data-layer/src/features/claw/constants.d.ts +0 -126
  204. package/dist/data-layer/src/features/claw/types.d.ts +0 -275
  205. package/dist/data-layer/src/features/constants.d.ts +0 -3
  206. package/dist/data-layer/src/features/core/api-slice.d.ts +0 -9045
  207. package/dist/data-layer/src/features/core/constants.d.ts +0 -51
  208. package/dist/data-layer/src/features/core/custom-api-slice.d.ts +0 -1766
  209. package/dist/data-layer/src/features/core/custom-public-image-asset-api-slice.d.ts +0 -373
  210. package/dist/data-layer/src/features/core/types.d.ts +0 -73
  211. package/dist/data-layer/src/features/course-metadata/api-slice.d.ts +0 -1728
  212. package/dist/data-layer/src/features/course-metadata/types.d.ts +0 -179
  213. package/dist/data-layer/src/features/courses/api-slice.d.ts +0 -664
  214. package/dist/data-layer/src/features/courses/types.d.ts +0 -26
  215. package/dist/data-layer/src/features/credentials/api-slice.d.ts +0 -6360
  216. package/dist/data-layer/src/features/credentials/constants.d.ts +0 -36
  217. package/dist/data-layer/src/features/credentials/custom-api-slice.d.ts +0 -1839
  218. package/dist/data-layer/src/features/credentials/types.d.ts +0 -39
  219. package/dist/data-layer/src/features/custom-domain/api-slice.d.ts +0 -602
  220. package/dist/data-layer/src/features/custom-domain/constants.d.ts +0 -20
  221. package/dist/data-layer/src/features/custom-domain/types.d.ts +0 -46
  222. package/dist/data-layer/src/features/datasets/api-slice.d.ts +0 -439
  223. package/dist/data-layer/src/features/disclaimers/api-slice.d.ts +0 -912
  224. package/dist/data-layer/src/features/disclaimers/constants.d.ts +0 -27
  225. package/dist/data-layer/src/features/disclaimers/types.d.ts +0 -67
  226. package/dist/data-layer/src/features/edx-proctoring/api-slice.d.ts +0 -590
  227. package/dist/data-layer/src/features/edx-proctoring/constants.d.ts +0 -15
  228. package/dist/data-layer/src/features/edx-proctoring/types.d.ts +0 -61
  229. package/dist/data-layer/src/features/edx-sso/api-slice.d.ts +0 -334
  230. package/dist/data-layer/src/features/edx-sso/types.d.ts +0 -10
  231. package/dist/data-layer/src/features/llms/api-slice.d.ts +0 -373
  232. package/dist/data-layer/src/features/mcp/api-slice.d.ts +0 -2613
  233. package/dist/data-layer/src/features/mcp/constants.d.ts +0 -57
  234. package/dist/data-layer/src/features/mcp/types.d.ts +0 -176
  235. package/dist/data-layer/src/features/memory/api-slice.d.ts +0 -3462
  236. package/dist/data-layer/src/features/memory/constants.d.ts +0 -80
  237. package/dist/data-layer/src/features/memory/types.d.ts +0 -190
  238. package/dist/data-layer/src/features/mentor/api-slice.d.ts +0 -7984
  239. package/dist/data-layer/src/features/mentor/constants.d.ts +0 -45
  240. package/dist/data-layer/src/features/mentor/custom-api-slice.d.ts +0 -957
  241. package/dist/data-layer/src/features/mentor/privacy.d.ts +0 -61
  242. package/dist/data-layer/src/features/mentor/types.d.ts +0 -83
  243. package/dist/data-layer/src/features/mentor-categories/api-slice.d.ts +0 -785
  244. package/dist/data-layer/src/features/moderation-logs/api-slice.d.ts +0 -705
  245. package/dist/data-layer/src/features/monetization/constants.d.ts +0 -76
  246. package/dist/data-layer/src/features/monetization/custom-api-slice.d.ts +0 -5178
  247. package/dist/data-layer/src/features/monetization/types.d.ts +0 -229
  248. package/dist/data-layer/src/features/notifications/api-slice.d.ts +0 -1728
  249. package/dist/data-layer/src/features/notifications/constants.d.ts +0 -26
  250. package/dist/data-layer/src/features/notifications/custom-api-slice.d.ts +0 -996
  251. package/dist/data-layer/src/features/notifications/types.d.ts +0 -69
  252. package/dist/data-layer/src/features/per-learner/api-slice.d.ts +0 -1329
  253. package/dist/data-layer/src/features/periodic-agents/api-slice.d.ts +0 -2347
  254. package/dist/data-layer/src/features/platform/api-slice.d.ts +0 -2553
  255. package/dist/data-layer/src/features/platform/constants.d.ts +0 -17
  256. package/dist/data-layer/src/features/platform/custom-api-slice.d.ts +0 -493
  257. package/dist/data-layer/src/features/platform/types.d.ts +0 -61
  258. package/dist/data-layer/src/features/projects/api-slice.d.ts +0 -2026
  259. package/dist/data-layer/src/features/projects/constants.d.ts +0 -51
  260. package/dist/data-layer/src/features/projects/types.d.ts +0 -79
  261. package/dist/data-layer/src/features/prompts/api-slice.d.ts +0 -2464
  262. package/dist/data-layer/src/features/reports/api-slice.d.ts +0 -789
  263. package/dist/data-layer/src/features/retirement/api-slice.d.ts +0 -165
  264. package/dist/data-layer/src/features/retirement/constants.d.ts +0 -7
  265. package/dist/data-layer/src/features/retirement/types.d.ts +0 -3
  266. package/dist/data-layer/src/features/search/ai-search-api-slice.d.ts +0 -1413
  267. package/dist/data-layer/src/features/search/api-slice.d.ts +0 -2017
  268. package/dist/data-layer/src/features/search/constants.d.ts +0 -41
  269. package/dist/data-layer/src/features/search/types.d.ts +0 -161
  270. package/dist/data-layer/src/features/sessions/api-slice.d.ts +0 -969
  271. package/dist/data-layer/src/features/sessions/constants.d.ts +0 -3
  272. package/dist/data-layer/src/features/sessions/url.d.ts +0 -9
  273. package/dist/data-layer/src/features/skills/api-slice.d.ts +0 -1389
  274. package/dist/data-layer/src/features/stripe/api-slice.d.ts +0 -803
  275. package/dist/data-layer/src/features/stripe/constants.d.ts +0 -19
  276. package/dist/data-layer/src/features/stripe/types.d.ts +0 -19
  277. package/dist/data-layer/src/features/tenant/api-slice.d.ts +0 -832
  278. package/dist/data-layer/src/features/tenant/constants.d.ts +0 -11
  279. package/dist/data-layer/src/features/tenant/types.d.ts +0 -19
  280. package/dist/data-layer/src/features/tenant-logo/api-slice.d.ts +0 -349
  281. package/dist/data-layer/src/features/tenant-logo/constants.d.ts +0 -24
  282. package/dist/data-layer/src/features/tools/api-slice.d.ts +0 -417
  283. package/dist/data-layer/src/features/training-documents/api-slice.d.ts +0 -1523
  284. package/dist/data-layer/src/features/user/api-slice.d.ts +0 -2128
  285. package/dist/data-layer/src/features/user/constants.d.ts +0 -47
  286. package/dist/data-layer/src/features/user/types.d.ts +0 -134
  287. package/dist/data-layer/src/features/user-invitations/api-slice.d.ts +0 -762
  288. package/dist/data-layer/src/features/utils.d.ts +0 -94
  289. package/dist/data-layer/src/features/watched-groups/api-slice.d.ts +0 -2481
  290. package/dist/data-layer/src/features/watched-groups/constants.d.ts +0 -66
  291. package/dist/data-layer/src/features/watched-groups/types.d.ts +0 -143
  292. package/dist/data-layer/src/features/workflows/api-slice.d.ts +0 -2454
  293. package/dist/data-layer/src/features/workflows/constants.d.ts +0 -57
  294. package/dist/data-layer/src/features/workflows/types.d.ts +0 -130
  295. package/dist/data-layer/src/index.d.ts +0 -121
  296. package/dist/data-layer/src/reducers/index.d.ts +0 -2
  297. package/dist/data-layer/src/reducers/mentor.d.ts +0 -2
  298. package/dist/data-layer/src/reducers/skills.d.ts +0 -2
  299. package/dist/data-layer/src/services/StorageService.d.ts +0 -5
  300. package/dist/data-layer/src/utils/index.d.ts +0 -6
@@ -1,785 +0,0 @@
1
- export declare const mentorCategoriesApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
2
- attempt?: number;
3
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, {
4
- getMentorCategories: import("@reduxjs/toolkit/query").QueryDefinition<{
5
- org: string;
6
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
7
- attempt?: number;
8
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>;
9
- getMentorCategoryGroups: import("@reduxjs/toolkit/query").QueryDefinition<{
10
- org: string;
11
- audience?: number;
12
- audienceName?: string;
13
- ordering?: string;
14
- search?: string;
15
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
16
- attempt?: number;
17
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>;
18
- }, "mentorCategoriesApiSlice", never, typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
19
- export declare const useGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
20
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
21
- originalArgs?: undefined | undefined;
22
- data?: undefined | undefined;
23
- error?: undefined | undefined;
24
- requestId?: undefined | undefined;
25
- endpointName?: string | undefined;
26
- startedTimeStamp?: undefined | undefined;
27
- fulfilledTimeStamp?: undefined | undefined;
28
- } & {
29
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
30
- isUninitialized: false;
31
- isLoading: false;
32
- isFetching: false;
33
- isSuccess: false;
34
- isError: false;
35
- }, "isUninitialized"> & {
36
- isUninitialized: true;
37
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
38
- org: string;
39
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
40
- attempt?: number;
41
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
42
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
43
- isUninitialized: false;
44
- isLoading: false;
45
- isFetching: false;
46
- isSuccess: false;
47
- isError: false;
48
- }, {
49
- isLoading: true;
50
- isFetching: boolean;
51
- data: undefined;
52
- } | ({
53
- isSuccess: true;
54
- isFetching: true;
55
- error: undefined;
56
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
57
- org: string;
58
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
59
- attempt?: number;
60
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
61
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
62
- isUninitialized: false;
63
- isLoading: false;
64
- isFetching: false;
65
- isSuccess: false;
66
- isError: false;
67
- }, "data" | "fulfilledTimeStamp">>) | ({
68
- isSuccess: true;
69
- isFetching: false;
70
- error: undefined;
71
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
72
- org: string;
73
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
74
- attempt?: number;
75
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
76
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
77
- isUninitialized: false;
78
- isLoading: false;
79
- isFetching: false;
80
- isSuccess: false;
81
- isError: false;
82
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
83
- isError: true;
84
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
85
- org: string;
86
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
87
- attempt?: number;
88
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
89
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
90
- isUninitialized: false;
91
- isLoading: false;
92
- isFetching: false;
93
- isSuccess: false;
94
- isError: false;
95
- }, "error">>)>> & {
96
- status: import("@reduxjs/toolkit/query").QueryStatus;
97
- }>(arg: {
98
- org: string;
99
- } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
100
- skip?: boolean;
101
- refetchOnMountOrArgChange?: boolean | number;
102
- } & {
103
- skip?: boolean;
104
- selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
105
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
106
- originalArgs?: undefined | undefined;
107
- data?: undefined | undefined;
108
- error?: undefined | undefined;
109
- requestId?: undefined | undefined;
110
- endpointName?: string | undefined;
111
- startedTimeStamp?: undefined | undefined;
112
- fulfilledTimeStamp?: undefined | undefined;
113
- } & {
114
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
115
- isUninitialized: false;
116
- isLoading: false;
117
- isFetching: false;
118
- isSuccess: false;
119
- isError: false;
120
- }, "isUninitialized"> & {
121
- isUninitialized: true;
122
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
123
- org: string;
124
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
125
- attempt?: number;
126
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
127
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
128
- isUninitialized: false;
129
- isLoading: false;
130
- isFetching: false;
131
- isSuccess: false;
132
- isError: false;
133
- }, {
134
- isLoading: true;
135
- isFetching: boolean;
136
- data: undefined;
137
- } | ({
138
- isSuccess: true;
139
- isFetching: true;
140
- error: undefined;
141
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
142
- org: string;
143
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
144
- attempt?: number;
145
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
146
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
147
- isUninitialized: false;
148
- isLoading: false;
149
- isFetching: false;
150
- isSuccess: false;
151
- isError: false;
152
- }, "data" | "fulfilledTimeStamp">>) | ({
153
- isSuccess: true;
154
- isFetching: false;
155
- error: undefined;
156
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
157
- org: string;
158
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
159
- attempt?: number;
160
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
161
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
162
- isUninitialized: false;
163
- isLoading: false;
164
- isFetching: false;
165
- isSuccess: false;
166
- isError: false;
167
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
168
- isError: true;
169
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
170
- org: string;
171
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
172
- attempt?: number;
173
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
174
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
175
- isUninitialized: false;
176
- isLoading: false;
177
- isFetching: false;
178
- isSuccess: false;
179
- isError: false;
180
- }, "error">>)>> & {
181
- status: import("@reduxjs/toolkit/query").QueryStatus;
182
- }) => R) | undefined;
183
- }) | undefined) => [R][R extends any ? 0 : never] & {
184
- refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
185
- org: string;
186
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
187
- attempt?: number;
188
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>>;
189
- }, useLazyGetMentorCategoriesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
190
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
191
- originalArgs?: undefined | undefined;
192
- data?: undefined | undefined;
193
- error?: undefined | undefined;
194
- requestId?: undefined | undefined;
195
- endpointName?: string | undefined;
196
- startedTimeStamp?: undefined | undefined;
197
- fulfilledTimeStamp?: undefined | undefined;
198
- } & {
199
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
200
- isUninitialized: false;
201
- isLoading: false;
202
- isFetching: false;
203
- isSuccess: false;
204
- isError: false;
205
- }, "isUninitialized"> & {
206
- isUninitialized: true;
207
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
208
- org: string;
209
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
210
- attempt?: number;
211
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
212
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
213
- isUninitialized: false;
214
- isLoading: false;
215
- isFetching: false;
216
- isSuccess: false;
217
- isError: false;
218
- }, {
219
- isLoading: true;
220
- isFetching: boolean;
221
- data: undefined;
222
- } | ({
223
- isSuccess: true;
224
- isFetching: true;
225
- error: undefined;
226
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
227
- org: string;
228
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
229
- attempt?: number;
230
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
231
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
232
- isUninitialized: false;
233
- isLoading: false;
234
- isFetching: false;
235
- isSuccess: false;
236
- isError: false;
237
- }, "data" | "fulfilledTimeStamp">>) | ({
238
- isSuccess: true;
239
- isFetching: false;
240
- error: undefined;
241
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
242
- org: string;
243
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
244
- attempt?: number;
245
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
246
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
247
- isUninitialized: false;
248
- isLoading: false;
249
- isFetching: false;
250
- isSuccess: false;
251
- isError: false;
252
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
253
- isError: true;
254
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
255
- org: string;
256
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
257
- attempt?: number;
258
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
259
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
260
- isUninitialized: false;
261
- isLoading: false;
262
- isFetching: false;
263
- isSuccess: false;
264
- isError: false;
265
- }, "error">>)>> & {
266
- status: import("@reduxjs/toolkit/query").QueryStatus;
267
- }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
268
- skip?: boolean;
269
- selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
270
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
271
- originalArgs?: undefined | undefined;
272
- data?: undefined | undefined;
273
- error?: undefined | undefined;
274
- requestId?: undefined | undefined;
275
- endpointName?: string | undefined;
276
- startedTimeStamp?: undefined | undefined;
277
- fulfilledTimeStamp?: undefined | undefined;
278
- } & {
279
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
280
- isUninitialized: false;
281
- isLoading: false;
282
- isFetching: false;
283
- isSuccess: false;
284
- isError: false;
285
- }, "isUninitialized"> & {
286
- isUninitialized: true;
287
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
288
- org: string;
289
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
290
- attempt?: number;
291
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
292
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
293
- isUninitialized: false;
294
- isLoading: false;
295
- isFetching: false;
296
- isSuccess: false;
297
- isError: false;
298
- }, {
299
- isLoading: true;
300
- isFetching: boolean;
301
- data: undefined;
302
- } | ({
303
- isSuccess: true;
304
- isFetching: true;
305
- error: undefined;
306
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
307
- org: string;
308
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
309
- attempt?: number;
310
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
311
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
312
- isUninitialized: false;
313
- isLoading: false;
314
- isFetching: false;
315
- isSuccess: false;
316
- isError: false;
317
- }, "data" | "fulfilledTimeStamp">>) | ({
318
- isSuccess: true;
319
- isFetching: false;
320
- error: undefined;
321
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
322
- org: string;
323
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
324
- attempt?: number;
325
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
326
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
327
- isUninitialized: false;
328
- isLoading: false;
329
- isFetching: false;
330
- isSuccess: false;
331
- isError: false;
332
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
333
- isError: true;
334
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
335
- org: string;
336
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
337
- attempt?: number;
338
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>> & {
339
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[] | undefined;
340
- isUninitialized: false;
341
- isLoading: false;
342
- isFetching: false;
343
- isSuccess: false;
344
- isError: false;
345
- }, "error">>)>> & {
346
- status: import("@reduxjs/toolkit/query").QueryStatus;
347
- }) => R) | undefined;
348
- }, "skip">) | undefined) => [(arg: {
349
- org: string;
350
- }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
351
- org: string;
352
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
353
- attempt?: number;
354
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategory[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
355
- reset: () => void;
356
- }, {
357
- lastArg: {
358
- org: string;
359
- };
360
- }], useGetMentorCategoryGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
361
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
362
- originalArgs?: undefined | undefined;
363
- data?: undefined | undefined;
364
- error?: undefined | undefined;
365
- requestId?: undefined | undefined;
366
- endpointName?: string | undefined;
367
- startedTimeStamp?: undefined | undefined;
368
- fulfilledTimeStamp?: undefined | undefined;
369
- } & {
370
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
371
- isUninitialized: false;
372
- isLoading: false;
373
- isFetching: false;
374
- isSuccess: false;
375
- isError: false;
376
- }, "isUninitialized"> & {
377
- isUninitialized: true;
378
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
379
- org: string;
380
- audience?: number;
381
- audienceName?: string;
382
- ordering?: string;
383
- search?: string;
384
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
385
- attempt?: number;
386
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
387
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
388
- isUninitialized: false;
389
- isLoading: false;
390
- isFetching: false;
391
- isSuccess: false;
392
- isError: false;
393
- }, {
394
- isLoading: true;
395
- isFetching: boolean;
396
- data: undefined;
397
- } | ({
398
- isSuccess: true;
399
- isFetching: true;
400
- error: undefined;
401
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
402
- org: string;
403
- audience?: number;
404
- audienceName?: string;
405
- ordering?: string;
406
- search?: string;
407
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
408
- attempt?: number;
409
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
410
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
411
- isUninitialized: false;
412
- isLoading: false;
413
- isFetching: false;
414
- isSuccess: false;
415
- isError: false;
416
- }, "data" | "fulfilledTimeStamp">>) | ({
417
- isSuccess: true;
418
- isFetching: false;
419
- error: undefined;
420
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
421
- org: string;
422
- audience?: number;
423
- audienceName?: string;
424
- ordering?: string;
425
- search?: string;
426
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
427
- attempt?: number;
428
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
429
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
430
- isUninitialized: false;
431
- isLoading: false;
432
- isFetching: false;
433
- isSuccess: false;
434
- isError: false;
435
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
436
- isError: true;
437
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
438
- org: string;
439
- audience?: number;
440
- audienceName?: string;
441
- ordering?: string;
442
- search?: string;
443
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
444
- attempt?: number;
445
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
446
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
447
- isUninitialized: false;
448
- isLoading: false;
449
- isFetching: false;
450
- isSuccess: false;
451
- isError: false;
452
- }, "error">>)>> & {
453
- status: import("@reduxjs/toolkit/query").QueryStatus;
454
- }>(arg: {
455
- org: string;
456
- audience?: number;
457
- audienceName?: string;
458
- ordering?: string;
459
- search?: string;
460
- } | typeof import("@reduxjs/toolkit/query").skipToken, options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & {
461
- skip?: boolean;
462
- refetchOnMountOrArgChange?: boolean | number;
463
- } & {
464
- skip?: boolean;
465
- selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
466
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
467
- originalArgs?: undefined | undefined;
468
- data?: undefined | undefined;
469
- error?: undefined | undefined;
470
- requestId?: undefined | undefined;
471
- endpointName?: string | undefined;
472
- startedTimeStamp?: undefined | undefined;
473
- fulfilledTimeStamp?: undefined | undefined;
474
- } & {
475
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
476
- isUninitialized: false;
477
- isLoading: false;
478
- isFetching: false;
479
- isSuccess: false;
480
- isError: false;
481
- }, "isUninitialized"> & {
482
- isUninitialized: true;
483
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
484
- org: string;
485
- audience?: number;
486
- audienceName?: string;
487
- ordering?: string;
488
- search?: string;
489
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
490
- attempt?: number;
491
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
492
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
493
- isUninitialized: false;
494
- isLoading: false;
495
- isFetching: false;
496
- isSuccess: false;
497
- isError: false;
498
- }, {
499
- isLoading: true;
500
- isFetching: boolean;
501
- data: undefined;
502
- } | ({
503
- isSuccess: true;
504
- isFetching: true;
505
- error: undefined;
506
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
507
- org: string;
508
- audience?: number;
509
- audienceName?: string;
510
- ordering?: string;
511
- search?: string;
512
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
513
- attempt?: number;
514
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
515
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
516
- isUninitialized: false;
517
- isLoading: false;
518
- isFetching: false;
519
- isSuccess: false;
520
- isError: false;
521
- }, "data" | "fulfilledTimeStamp">>) | ({
522
- isSuccess: true;
523
- isFetching: false;
524
- error: undefined;
525
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
526
- org: string;
527
- audience?: number;
528
- audienceName?: string;
529
- ordering?: string;
530
- search?: string;
531
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
532
- attempt?: number;
533
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
534
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
535
- isUninitialized: false;
536
- isLoading: false;
537
- isFetching: false;
538
- isSuccess: false;
539
- isError: false;
540
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
541
- isError: true;
542
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
543
- org: string;
544
- audience?: number;
545
- audienceName?: string;
546
- ordering?: string;
547
- search?: string;
548
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
549
- attempt?: number;
550
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
551
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
552
- isUninitialized: false;
553
- isLoading: false;
554
- isFetching: false;
555
- isSuccess: false;
556
- isError: false;
557
- }, "error">>)>> & {
558
- status: import("@reduxjs/toolkit/query").QueryStatus;
559
- }) => R) | undefined;
560
- }) | undefined) => [R][R extends any ? 0 : never] & {
561
- refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
562
- org: string;
563
- audience?: number;
564
- audienceName?: string;
565
- ordering?: string;
566
- search?: string;
567
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
568
- attempt?: number;
569
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>;
570
- }, useLazyGetMentorCategoryGroupsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
571
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
572
- originalArgs?: undefined | undefined;
573
- data?: undefined | undefined;
574
- error?: undefined | undefined;
575
- requestId?: undefined | undefined;
576
- endpointName?: string | undefined;
577
- startedTimeStamp?: undefined | undefined;
578
- fulfilledTimeStamp?: undefined | undefined;
579
- } & {
580
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
581
- isUninitialized: false;
582
- isLoading: false;
583
- isFetching: false;
584
- isSuccess: false;
585
- isError: false;
586
- }, "isUninitialized"> & {
587
- isUninitialized: true;
588
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
589
- org: string;
590
- audience?: number;
591
- audienceName?: string;
592
- ordering?: string;
593
- search?: string;
594
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
595
- attempt?: number;
596
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
597
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
598
- isUninitialized: false;
599
- isLoading: false;
600
- isFetching: false;
601
- isSuccess: false;
602
- isError: false;
603
- }, {
604
- isLoading: true;
605
- isFetching: boolean;
606
- data: undefined;
607
- } | ({
608
- isSuccess: true;
609
- isFetching: true;
610
- error: undefined;
611
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
612
- org: string;
613
- audience?: number;
614
- audienceName?: string;
615
- ordering?: string;
616
- search?: string;
617
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
618
- attempt?: number;
619
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
620
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
621
- isUninitialized: false;
622
- isLoading: false;
623
- isFetching: false;
624
- isSuccess: false;
625
- isError: false;
626
- }, "data" | "fulfilledTimeStamp">>) | ({
627
- isSuccess: true;
628
- isFetching: false;
629
- error: undefined;
630
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
631
- org: string;
632
- audience?: number;
633
- audienceName?: string;
634
- ordering?: string;
635
- search?: string;
636
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
637
- attempt?: number;
638
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
639
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
640
- isUninitialized: false;
641
- isLoading: false;
642
- isFetching: false;
643
- isSuccess: false;
644
- isError: false;
645
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
646
- isError: true;
647
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
648
- org: string;
649
- audience?: number;
650
- audienceName?: string;
651
- ordering?: string;
652
- search?: string;
653
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
654
- attempt?: number;
655
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
656
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
657
- isUninitialized: false;
658
- isLoading: false;
659
- isFetching: false;
660
- isSuccess: false;
661
- isError: false;
662
- }, "error">>)>> & {
663
- status: import("@reduxjs/toolkit/query").QueryStatus;
664
- }>(options?: (import("@reduxjs/toolkit/query").SubscriptionOptions & Omit<{
665
- skip?: boolean;
666
- selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
667
- status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
668
- originalArgs?: undefined | undefined;
669
- data?: undefined | undefined;
670
- error?: undefined | undefined;
671
- requestId?: undefined | undefined;
672
- endpointName?: string | undefined;
673
- startedTimeStamp?: undefined | undefined;
674
- fulfilledTimeStamp?: undefined | undefined;
675
- } & {
676
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
677
- isUninitialized: false;
678
- isLoading: false;
679
- isFetching: false;
680
- isSuccess: false;
681
- isError: false;
682
- }, "isUninitialized"> & {
683
- isUninitialized: true;
684
- }) | import("@reduxjs/toolkit/query").TSHelpersOverride<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
685
- org: string;
686
- audience?: number;
687
- audienceName?: string;
688
- ordering?: string;
689
- search?: string;
690
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
691
- attempt?: number;
692
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
693
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
694
- isUninitialized: false;
695
- isLoading: false;
696
- isFetching: false;
697
- isSuccess: false;
698
- isError: false;
699
- }, {
700
- isLoading: true;
701
- isFetching: boolean;
702
- data: undefined;
703
- } | ({
704
- isSuccess: true;
705
- isFetching: true;
706
- error: undefined;
707
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
708
- org: string;
709
- audience?: number;
710
- audienceName?: string;
711
- ordering?: string;
712
- search?: string;
713
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
714
- attempt?: number;
715
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
716
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
717
- isUninitialized: false;
718
- isLoading: false;
719
- isFetching: false;
720
- isSuccess: false;
721
- isError: false;
722
- }, "data" | "fulfilledTimeStamp">>) | ({
723
- isSuccess: true;
724
- isFetching: false;
725
- error: undefined;
726
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
727
- org: string;
728
- audience?: number;
729
- audienceName?: string;
730
- ordering?: string;
731
- search?: string;
732
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
733
- attempt?: number;
734
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
735
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
736
- isUninitialized: false;
737
- isLoading: false;
738
- isFetching: false;
739
- isSuccess: false;
740
- isError: false;
741
- }, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
742
- isError: true;
743
- } & Required<Pick<import("@reduxjs/toolkit/query").QuerySubState<import("@reduxjs/toolkit/query").QueryDefinition<{
744
- org: string;
745
- audience?: number;
746
- audienceName?: string;
747
- ordering?: string;
748
- search?: string;
749
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
750
- attempt?: number;
751
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>> & {
752
- currentData?: import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[] | undefined;
753
- isUninitialized: false;
754
- isLoading: false;
755
- isFetching: false;
756
- isSuccess: false;
757
- isError: false;
758
- }, "error">>)>> & {
759
- status: import("@reduxjs/toolkit/query").QueryStatus;
760
- }) => R) | undefined;
761
- }, "skip">) | undefined) => [(arg: {
762
- org: string;
763
- audience?: number;
764
- audienceName?: string;
765
- ordering?: string;
766
- search?: string;
767
- }, preferCacheValue?: boolean) => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<{
768
- org: string;
769
- audience?: number;
770
- audienceName?: string;
771
- ordering?: string;
772
- search?: string;
773
- }, import("@reduxjs/toolkit/query").BaseQueryFn<void, unknown, unknown, {
774
- attempt?: number;
775
- } & import("@reduxjs/toolkit/query").RetryOptions, {}>, never, import("node_modules/@iblai/iblai-api/dist/types").MentorCategoryGroup[], "mentorCategoriesApiSlice", any>>, [R][R extends any ? 0 : never] & {
776
- reset: () => void;
777
- }, {
778
- lastArg: {
779
- org: string;
780
- audience?: number;
781
- audienceName?: string;
782
- ordering?: string;
783
- search?: string;
784
- };
785
- }];