@iblai/data-layer 0.0.4 → 0.0.5

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.
@@ -1,8 +1,10 @@
1
1
  export declare const chatApiSlice: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, {
2
2
  getPinnedMessages: import("@reduxjs/toolkit/query").QueryDefinition<[org: string, sessionId: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", import("@iblai/iblai-api").PinnedMessageGet[], "chatApiSlice", any>;
3
+ unPinMessage: import("@reduxjs/toolkit/query").MutationDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", void, "chatApiSlice", any>;
3
4
  addPinnedMessage: import("@reduxjs/toolkit/query").MutationDefinition<[org: string, userId: string, requestBody: import("@iblai/iblai-api").PinnedMessageRequest], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", import("@iblai/iblai-api").PinnedMessageCreate, "chatApiSlice", any>;
4
5
  getVectorDocuments: import("@reduxjs/toolkit/query").QueryDefinition<[org: string, sessionId: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", import("@iblai/iblai-api").VectorResult[], "chatApiSlice", any>;
5
6
  getRecentMessage: import("@reduxjs/toolkit/query").QueryDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", any, "chatApiSlice", any>;
7
+ deleteMessage: import("@reduxjs/toolkit/query").MutationDefinition<[org: string, sessionId: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", void, "chatApiSlice", any>;
6
8
  }, "chatApiSlice", "pinnedMessages" | "recentMessages", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
7
9
  export declare const useLazyGetPinnedMessagesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
8
10
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
@@ -135,6 +137,326 @@ export declare const useLazyGetPinnedMessagesQuery: <R extends Record<string, an
135
137
  reset: () => void;
136
138
  }, {
137
139
  lastArg: [org: string, sessionId: string, userId: string];
140
+ }], useUnPinMessageMutation: <R extends Record<string, any> = ({
141
+ requestId?: undefined;
142
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
143
+ data?: undefined;
144
+ error?: undefined;
145
+ endpointName?: string;
146
+ startedTimeStamp?: undefined;
147
+ fulfilledTimeStamp?: undefined;
148
+ } & {
149
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
150
+ isUninitialized: true;
151
+ isLoading: false;
152
+ isSuccess: false;
153
+ isError: false;
154
+ }) | ({
155
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
156
+ } & Omit<{
157
+ requestId: string;
158
+ data?: void | undefined;
159
+ error?: unknown;
160
+ endpointName: string;
161
+ startedTimeStamp: number;
162
+ fulfilledTimeStamp?: number;
163
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
164
+ requestId: string;
165
+ data?: void | undefined;
166
+ error?: unknown;
167
+ endpointName: string;
168
+ startedTimeStamp: number;
169
+ fulfilledTimeStamp?: number;
170
+ }, "data" | "fulfilledTimeStamp">> & {
171
+ error: undefined;
172
+ } & {
173
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
174
+ isUninitialized: false;
175
+ isLoading: false;
176
+ isSuccess: true;
177
+ isError: false;
178
+ }) | ({
179
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
180
+ } & {
181
+ requestId: string;
182
+ data?: void | undefined;
183
+ error?: unknown;
184
+ endpointName: string;
185
+ startedTimeStamp: number;
186
+ fulfilledTimeStamp?: number;
187
+ } & {
188
+ data?: undefined;
189
+ } & {
190
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
191
+ isUninitialized: false;
192
+ isLoading: true;
193
+ isSuccess: false;
194
+ isError: false;
195
+ }) | ({
196
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
197
+ } & Omit<{
198
+ requestId: string;
199
+ data?: void | undefined;
200
+ error?: unknown;
201
+ endpointName: string;
202
+ startedTimeStamp: number;
203
+ fulfilledTimeStamp?: number;
204
+ }, "error"> & Required<Pick<{
205
+ requestId: string;
206
+ data?: void | undefined;
207
+ error?: unknown;
208
+ endpointName: string;
209
+ startedTimeStamp: number;
210
+ fulfilledTimeStamp?: number;
211
+ }, "error">> & {
212
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
213
+ isUninitialized: false;
214
+ isLoading: false;
215
+ isSuccess: false;
216
+ isError: true;
217
+ })>(options?: {
218
+ selectFromResult?: ((state: ({
219
+ requestId?: undefined;
220
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
221
+ data?: undefined;
222
+ error?: undefined;
223
+ endpointName?: string;
224
+ startedTimeStamp?: undefined;
225
+ fulfilledTimeStamp?: undefined;
226
+ } & {
227
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
228
+ isUninitialized: true;
229
+ isLoading: false;
230
+ isSuccess: false;
231
+ isError: false;
232
+ }) | ({
233
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
234
+ } & Omit<{
235
+ requestId: string;
236
+ data?: void | undefined;
237
+ error?: unknown;
238
+ endpointName: string;
239
+ startedTimeStamp: number;
240
+ fulfilledTimeStamp?: number;
241
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
242
+ requestId: string;
243
+ data?: void | undefined;
244
+ error?: unknown;
245
+ endpointName: string;
246
+ startedTimeStamp: number;
247
+ fulfilledTimeStamp?: number;
248
+ }, "data" | "fulfilledTimeStamp">> & {
249
+ error: undefined;
250
+ } & {
251
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
252
+ isUninitialized: false;
253
+ isLoading: false;
254
+ isSuccess: true;
255
+ isError: false;
256
+ }) | ({
257
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
258
+ } & {
259
+ requestId: string;
260
+ data?: void | undefined;
261
+ error?: unknown;
262
+ endpointName: string;
263
+ startedTimeStamp: number;
264
+ fulfilledTimeStamp?: number;
265
+ } & {
266
+ data?: undefined;
267
+ } & {
268
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
269
+ isUninitialized: false;
270
+ isLoading: true;
271
+ isSuccess: false;
272
+ isError: false;
273
+ }) | ({
274
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
275
+ } & Omit<{
276
+ requestId: string;
277
+ data?: void | undefined;
278
+ error?: unknown;
279
+ endpointName: string;
280
+ startedTimeStamp: number;
281
+ fulfilledTimeStamp?: number;
282
+ }, "error"> & Required<Pick<{
283
+ requestId: string;
284
+ data?: void | undefined;
285
+ error?: unknown;
286
+ endpointName: string;
287
+ startedTimeStamp: number;
288
+ fulfilledTimeStamp?: number;
289
+ }, "error">> & {
290
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
291
+ isUninitialized: false;
292
+ isLoading: false;
293
+ isSuccess: false;
294
+ isError: true;
295
+ })) => R) | undefined;
296
+ fixedCacheKey?: string;
297
+ } | undefined) => readonly [(arg: [org: string, userId: string]) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<[org: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", void, "chatApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
298
+ originalArgs?: [org: string, userId: string] | undefined;
299
+ reset: () => void;
300
+ }], useDeleteMessageMutation: <R extends Record<string, any> = ({
301
+ requestId?: undefined;
302
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
303
+ data?: undefined;
304
+ error?: undefined;
305
+ endpointName?: string;
306
+ startedTimeStamp?: undefined;
307
+ fulfilledTimeStamp?: undefined;
308
+ } & {
309
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
310
+ isUninitialized: true;
311
+ isLoading: false;
312
+ isSuccess: false;
313
+ isError: false;
314
+ }) | ({
315
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
316
+ } & Omit<{
317
+ requestId: string;
318
+ data?: void | undefined;
319
+ error?: unknown;
320
+ endpointName: string;
321
+ startedTimeStamp: number;
322
+ fulfilledTimeStamp?: number;
323
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
324
+ requestId: string;
325
+ data?: void | undefined;
326
+ error?: unknown;
327
+ endpointName: string;
328
+ startedTimeStamp: number;
329
+ fulfilledTimeStamp?: number;
330
+ }, "data" | "fulfilledTimeStamp">> & {
331
+ error: undefined;
332
+ } & {
333
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
334
+ isUninitialized: false;
335
+ isLoading: false;
336
+ isSuccess: true;
337
+ isError: false;
338
+ }) | ({
339
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
340
+ } & {
341
+ requestId: string;
342
+ data?: void | undefined;
343
+ error?: unknown;
344
+ endpointName: string;
345
+ startedTimeStamp: number;
346
+ fulfilledTimeStamp?: number;
347
+ } & {
348
+ data?: undefined;
349
+ } & {
350
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
351
+ isUninitialized: false;
352
+ isLoading: true;
353
+ isSuccess: false;
354
+ isError: false;
355
+ }) | ({
356
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
357
+ } & Omit<{
358
+ requestId: string;
359
+ data?: void | undefined;
360
+ error?: unknown;
361
+ endpointName: string;
362
+ startedTimeStamp: number;
363
+ fulfilledTimeStamp?: number;
364
+ }, "error"> & Required<Pick<{
365
+ requestId: string;
366
+ data?: void | undefined;
367
+ error?: unknown;
368
+ endpointName: string;
369
+ startedTimeStamp: number;
370
+ fulfilledTimeStamp?: number;
371
+ }, "error">> & {
372
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
373
+ isUninitialized: false;
374
+ isLoading: false;
375
+ isSuccess: false;
376
+ isError: true;
377
+ })>(options?: {
378
+ selectFromResult?: ((state: ({
379
+ requestId?: undefined;
380
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
381
+ data?: undefined;
382
+ error?: undefined;
383
+ endpointName?: string;
384
+ startedTimeStamp?: undefined;
385
+ fulfilledTimeStamp?: undefined;
386
+ } & {
387
+ status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
388
+ isUninitialized: true;
389
+ isLoading: false;
390
+ isSuccess: false;
391
+ isError: false;
392
+ }) | ({
393
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
394
+ } & Omit<{
395
+ requestId: string;
396
+ data?: void | undefined;
397
+ error?: unknown;
398
+ endpointName: string;
399
+ startedTimeStamp: number;
400
+ fulfilledTimeStamp?: number;
401
+ }, "data" | "fulfilledTimeStamp"> & Required<Pick<{
402
+ requestId: string;
403
+ data?: void | undefined;
404
+ error?: unknown;
405
+ endpointName: string;
406
+ startedTimeStamp: number;
407
+ fulfilledTimeStamp?: number;
408
+ }, "data" | "fulfilledTimeStamp">> & {
409
+ error: undefined;
410
+ } & {
411
+ status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
412
+ isUninitialized: false;
413
+ isLoading: false;
414
+ isSuccess: true;
415
+ isError: false;
416
+ }) | ({
417
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
418
+ } & {
419
+ requestId: string;
420
+ data?: void | undefined;
421
+ error?: unknown;
422
+ endpointName: string;
423
+ startedTimeStamp: number;
424
+ fulfilledTimeStamp?: number;
425
+ } & {
426
+ data?: undefined;
427
+ } & {
428
+ status: import("@reduxjs/toolkit/query").QueryStatus.pending;
429
+ isUninitialized: false;
430
+ isLoading: true;
431
+ isSuccess: false;
432
+ isError: false;
433
+ }) | ({
434
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
435
+ } & Omit<{
436
+ requestId: string;
437
+ data?: void | undefined;
438
+ error?: unknown;
439
+ endpointName: string;
440
+ startedTimeStamp: number;
441
+ fulfilledTimeStamp?: number;
442
+ }, "error"> & Required<Pick<{
443
+ requestId: string;
444
+ data?: void | undefined;
445
+ error?: unknown;
446
+ endpointName: string;
447
+ startedTimeStamp: number;
448
+ fulfilledTimeStamp?: number;
449
+ }, "error">> & {
450
+ status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
451
+ isUninitialized: false;
452
+ isLoading: false;
453
+ isSuccess: false;
454
+ isError: true;
455
+ })) => R) | undefined;
456
+ fixedCacheKey?: string;
457
+ } | undefined) => readonly [(arg: [org: string, sessionId: string, userId: string]) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<[org: string, sessionId: string, userId: string], import("@reduxjs/toolkit/query").BaseQueryFn<any, unknown, unknown, {}, {}>, "pinnedMessages" | "recentMessages", void, "chatApiSlice", any>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
458
+ originalArgs?: [org: string, sessionId: string, userId: string] | undefined;
459
+ reset: () => void;
138
460
  }], useGetPinnedMessagesQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
139
461
  status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
140
462
  originalArgs?: undefined | undefined;
package/dist/index.esm.js CHANGED
@@ -27059,6 +27059,9 @@ const chatApiSlice = createApi({
27059
27059
  ...buildEndpointFromAxdService(AiMentorService.aiMentorOrgsUsersPinMessageList),
27060
27060
  providesTags: ["pinnedMessages"],
27061
27061
  }),
27062
+ unPinMessage: builder.mutation({
27063
+ ...buildEndpointFromAxdService(AiMentorService.aiMentorOrgsUsersPinMessageDestroy),
27064
+ }),
27062
27065
  addPinnedMessage: builder.mutation({
27063
27066
  ...buildEndpointFromAxdService(AiMentorService.aiMentorOrgsUsersPinMessageCreate),
27064
27067
  invalidatesTags: ["pinnedMessages"],
@@ -27069,9 +27072,12 @@ const chatApiSlice = createApi({
27069
27072
  getRecentMessage: builder.query({
27070
27073
  ...buildEndpointFromAxdService(AiMentorService.aiMentorOrgsUsersRecentMessagesRetrieve),
27071
27074
  }),
27075
+ deleteMessage: builder.mutation({
27076
+ ...buildEndpointFromAxdService(AiMentorService.aiMentorOrgsUsersSessionsDestroy),
27077
+ }),
27072
27078
  }),
27073
27079
  });
27074
- const { useLazyGetPinnedMessagesQuery, useGetPinnedMessagesQuery, useAddPinnedMessageMutation, useGetVectorDocumentsQuery, useLazyGetVectorDocumentsQuery, useGetRecentMessageQuery, useLazyGetRecentMessageQuery, } = chatApiSlice;
27080
+ const { useLazyGetPinnedMessagesQuery, useUnPinMessageMutation, useDeleteMessageMutation, useGetPinnedMessagesQuery, useAddPinnedMessageMutation, useGetVectorDocumentsQuery, useLazyGetVectorDocumentsQuery, useGetRecentMessageQuery, useLazyGetRecentMessageQuery, } = chatApiSlice;
27075
27081
 
27076
27082
  const llmsApiSlice = createApi({
27077
27083
  reducerPath: "llmsApiSlice",
@@ -27416,5 +27422,5 @@ const initializeDataLayer = (dmUrl, axdUrl, lmsUrl, storageService) => {
27416
27422
  Config.lmsUrl = lmsUrl;
27417
27423
  };
27418
27424
 
27419
- export { APP_IDENTIFIERS, IblDataLayer, QUERY_PARAMS, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, URL_PATTERNS, apiKeysApiReducer, apiKeysApiSlice, chatApiSlice, chatHistoryApiSlice, coreApiSlice, credentialsApiSlice, initializeDataLayer, llmsApiSlice, mentorApiReducer, mentorApiSlice, mentorCategoriesApiSlice, mentorMiddleware, mentorReducer, platformApiReducer, platformApiSlice, promptsApiSlice, skillsApiSlice, tenantApiReducer, tenantApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useCreateApiKeyMutation, useCreateMentorMutation, useCreatePromptMutation, useCreateRedirectTokenMutation, useCreateUserInvitationMutation, useDeleteApiKeyMutation, useDeletePromptMutation, useDeleteTrainingDocumentMutation, useEditMentorMutation, useEditTrainingDocumentMutation, useExportChatHistoryMutation, useGetApiKeysQuery, useGetChatHistoryExportStatusQuery, useGetChatHistoryFilterQuery, useGetChatHistoryQuery, useGetCredentialsQuery, useGetDesiredSkillsQuery, useGetLlmsQuery, useGetMentorCategoriesQuery, useGetMentorDetailsQuery, useGetMentorPublicSettingsQuery, useGetMentorSettingsQuery, useGetMentorsQuery, useGetPinnedMessagesQuery, useGetPromptCategoriesQuery, useGetPromptsQuery, useGetRecentMessageQuery, useGetReportedSkillsQuery, useGetSkillsPointsPercentileQuery, useGetTenantMetadataQuery, useGetTrainingDocumentsQuery, useGetUserCredentialsQuery, useGetUserInvitationsQuery, useGetUserMetadataQuery, useGetUserTenantsQuery, useGetVectorDocumentsQuery, useInviteUserMutation, useLazyGetApiKeysQuery, useLazyGetChatHistoryExportStatusQuery, useLazyGetChatHistoryFilterQuery, useLazyGetChatHistoryQuery, useLazyGetCredentialsQuery, useLazyGetDesiredSkillsQuery, useLazyGetLlmsQuery, useLazyGetMentorCategoriesQuery, useLazyGetMentorDetailsQuery, useLazyGetMentorPublicSettingsQuery, useLazyGetMentorSettingsQuery, useLazyGetMentorsQuery, useLazyGetPinnedMessagesQuery, useLazyGetPromptCategoriesQuery, useLazyGetPromptsQuery, useLazyGetRecentMessageQuery, useLazyGetReportedSkillsQuery, useLazyGetSkillsPointsPercentileQuery, useLazyGetTenantMetadataQuery, useLazyGetTrainingDocumentsQuery, useLazyGetUserCredentialsQuery, useLazyGetUserInvitationsQuery, useLazyGetUserMetadataQuery, useLazyGetUserTenantsQuery, useLazyGetVectorDocumentsQuery, useLazyPlatformUsersQuery, useLazySeedMentorsQuery, usePlatformInvitationsQuery, usePlatformUsersQuery, useResetPasswordMutation, useSeedMentorsQuery, useUpdateMentorSettingsMutation, useUpdatePromptMutation, useUpdateUserMetadataMutation, useUpdateUserRoleMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
27425
+ export { APP_IDENTIFIERS, IblDataLayer, QUERY_PARAMS, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, URL_PATTERNS, apiKeysApiReducer, apiKeysApiSlice, chatApiSlice, chatHistoryApiSlice, coreApiSlice, credentialsApiSlice, initializeDataLayer, llmsApiSlice, mentorApiReducer, mentorApiSlice, mentorCategoriesApiSlice, mentorMiddleware, mentorReducer, platformApiReducer, platformApiSlice, promptsApiSlice, skillsApiSlice, tenantApiReducer, tenantApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useCreateApiKeyMutation, useCreateMentorMutation, useCreatePromptMutation, useCreateRedirectTokenMutation, useCreateUserInvitationMutation, useDeleteApiKeyMutation, useDeleteMessageMutation, useDeletePromptMutation, useDeleteTrainingDocumentMutation, useEditMentorMutation, useEditTrainingDocumentMutation, useExportChatHistoryMutation, useGetApiKeysQuery, useGetChatHistoryExportStatusQuery, useGetChatHistoryFilterQuery, useGetChatHistoryQuery, useGetCredentialsQuery, useGetDesiredSkillsQuery, useGetLlmsQuery, useGetMentorCategoriesQuery, useGetMentorDetailsQuery, useGetMentorPublicSettingsQuery, useGetMentorSettingsQuery, useGetMentorsQuery, useGetPinnedMessagesQuery, useGetPromptCategoriesQuery, useGetPromptsQuery, useGetRecentMessageQuery, useGetReportedSkillsQuery, useGetSkillsPointsPercentileQuery, useGetTenantMetadataQuery, useGetTrainingDocumentsQuery, useGetUserCredentialsQuery, useGetUserInvitationsQuery, useGetUserMetadataQuery, useGetUserTenantsQuery, useGetVectorDocumentsQuery, useInviteUserMutation, useLazyGetApiKeysQuery, useLazyGetChatHistoryExportStatusQuery, useLazyGetChatHistoryFilterQuery, useLazyGetChatHistoryQuery, useLazyGetCredentialsQuery, useLazyGetDesiredSkillsQuery, useLazyGetLlmsQuery, useLazyGetMentorCategoriesQuery, useLazyGetMentorDetailsQuery, useLazyGetMentorPublicSettingsQuery, useLazyGetMentorSettingsQuery, useLazyGetMentorsQuery, useLazyGetPinnedMessagesQuery, useLazyGetPromptCategoriesQuery, useLazyGetPromptsQuery, useLazyGetRecentMessageQuery, useLazyGetReportedSkillsQuery, useLazyGetSkillsPointsPercentileQuery, useLazyGetTenantMetadataQuery, useLazyGetTrainingDocumentsQuery, useLazyGetUserCredentialsQuery, useLazyGetUserInvitationsQuery, useLazyGetUserMetadataQuery, useLazyGetUserTenantsQuery, useLazyGetVectorDocumentsQuery, useLazyPlatformUsersQuery, useLazySeedMentorsQuery, usePlatformInvitationsQuery, usePlatformUsersQuery, useResetPasswordMutation, useSeedMentorsQuery, useUnPinMessageMutation, useUpdateMentorSettingsMutation, useUpdatePromptMutation, useUpdateUserMetadataMutation, useUpdateUserRoleMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
27420
27426
  //# sourceMappingURL=index.esm.js.map