@iblai/data-layer 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -42204,179 +42204,224 @@ const moderationLogsApiReducer = moderationLogsApiSlice.reducer;
42204
42204
  const { useGetModerationLogsQuery, useLazyGetModerationLogsQuery, useDeleteModerationLogMutation, } = moderationLogsApiSlice;
42205
42205
 
42206
42206
  const MEMORY_REDUCER_PATH = 'memoryApiSlice';
42207
- const MEMORY_ENDPOINTS = {
42208
- GET_MEMORIES: {
42207
+ const MEMORY_QUERY_KEYS = {
42208
+ MEMSEARCH_USER_SETTINGS: () => ['MEMSEARCH_USER_SETTINGS'],
42209
+ MEMSEARCH_GLOBAL_MEMORIES: () => ['MEMSEARCH_GLOBAL_MEMORIES'],
42210
+ MEMSEARCH_MENTOR_MEMORIES: () => ['MEMSEARCH_MENTOR_MEMORIES'],
42211
+ MEMSEARCH_MEMORY_CATEGORIES: () => ['MEMSEARCH_MEMORY_CATEGORIES'],
42212
+ MEMSEARCH_PLATFORM_CONFIG: () => ['MEMSEARCH_PLATFORM_CONFIG'],
42213
+ };
42214
+ const MEMSEARCH_ENDPOINTS = {
42215
+ // User Memory Settings
42216
+ GET_USER_SETTINGS: {
42209
42217
  service: SERVICES.AXD,
42210
- path: (tenantKey, username) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memories/`,
42218
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/memsearch-settings/`,
42211
42219
  },
42212
- GET_MEMORY_CATEGORIES: {
42220
+ UPDATE_USER_SETTINGS: {
42213
42221
  service: SERVICES.AXD,
42214
- path: (tenantKey, username) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memory-categories/`,
42222
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/memsearch-settings/`,
42215
42223
  },
42216
- GET_MENTOR_USER_SETTINGS: {
42224
+ // Global Memories
42225
+ GET_GLOBAL_MEMORIES: {
42217
42226
  service: SERVICES.AXD,
42218
- path: (tenantKey, username, mentorId) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/mentors/${mentorId}/mentor-user-settings/`,
42227
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/global-memories/`,
42219
42228
  },
42220
- UPDATE_MENTOR_USER_SETTINGS: {
42229
+ CREATE_GLOBAL_MEMORY: {
42221
42230
  service: SERVICES.AXD,
42222
- path: (tenantKey, username, mentorId) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/mentors/${mentorId}/mentor-user-settings/`,
42231
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/global-memories/`,
42223
42232
  },
42224
- DELETE_MEMORY: {
42233
+ DELETE_GLOBAL_MEMORY: {
42225
42234
  service: SERVICES.AXD,
42226
- path: (tenantKey, username, memoryId) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memory-entries/${memoryId}/`,
42235
+ path: (org, userId, memoryId) => `/api/ai-mentor/orgs/${org}/users/${userId}/global-memories/${memoryId}/`,
42227
42236
  },
42228
- DELETE_MEMORY_BY_CATEGORY: {
42237
+ // Mentor-Specific Memories
42238
+ GET_MENTOR_MEMORIES: {
42229
42239
  service: SERVICES.AXD,
42230
- path: (tenantKey, username, category) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memory-entries/${category}/`,
42240
+ path: (org, userId, mentorId) => `/api/ai-mentor/orgs/${org}/users/${userId}/mentors/${mentorId}/mentor-memories/`,
42231
42241
  },
42232
- UPDATE_MEMORY_ENTRY: {
42242
+ CREATE_MENTOR_MEMORY: {
42233
42243
  service: SERVICES.AXD,
42234
- path: (tenantKey, username, entryId) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memory-entries/${entryId}/`,
42244
+ path: (org, userId, mentorId) => `/api/ai-mentor/orgs/${org}/users/${userId}/mentors/${mentorId}/mentor-memories/`,
42235
42245
  },
42236
- CREATE_MEMORY: {
42246
+ UPDATE_MENTOR_MEMORY: {
42237
42247
  service: SERVICES.AXD,
42238
- path: (tenantKey, username) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memories/`,
42248
+ path: (org, userId, mentorId, memoryId) => `/api/ai-mentor/orgs/${org}/users/${userId}/mentors/${mentorId}/mentor-memories/${memoryId}/`,
42239
42249
  },
42240
- GET_MEMORY_FILTERS: {
42250
+ DELETE_MENTOR_MEMORY: {
42241
42251
  service: SERVICES.AXD,
42242
- path: (tenantKey, username) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/memory-filter/`,
42252
+ path: (org, userId, mentorId, memoryId) => `/api/ai-mentor/orgs/${org}/users/${userId}/mentors/${mentorId}/mentor-memories/${memoryId}/`,
42243
42253
  },
42244
- GET_FILTERED_MEMORIES: {
42254
+ // Memory Categories (Admin)
42255
+ GET_MEMSEARCH_CATEGORIES: {
42245
42256
  service: SERVICES.AXD,
42246
- path: (tenantKey, username) => `/api/ai-mentor/orgs/${tenantKey}/users/${username}/filtered-memories/`,
42257
+ path: (org, mentorId) => `/api/ai-mentor/orgs/${org}/mentors/${mentorId}/memory-categories/`,
42258
+ },
42259
+ CREATE_MEMSEARCH_CATEGORY: {
42260
+ service: SERVICES.AXD,
42261
+ path: (org, mentorId) => `/api/ai-mentor/orgs/${org}/mentors/${mentorId}/memory-categories/`,
42262
+ },
42263
+ UPDATE_MEMSEARCH_CATEGORY: {
42264
+ service: SERVICES.AXD,
42265
+ path: (org, mentorId, categoryId) => `/api/ai-mentor/orgs/${org}/mentors/${mentorId}/memory-categories/${categoryId}/`,
42266
+ },
42267
+ DELETE_MEMSEARCH_CATEGORY: {
42268
+ service: SERVICES.AXD,
42269
+ path: (org, mentorId, categoryId) => `/api/ai-mentor/orgs/${org}/mentors/${mentorId}/memory-categories/${categoryId}/`,
42270
+ },
42271
+ // Platform Configuration
42272
+ GET_MEMSEARCH_CONFIG: {
42273
+ service: SERVICES.AXD,
42274
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/memsearch-config/`,
42275
+ },
42276
+ UPDATE_MEMSEARCH_CONFIG: {
42277
+ service: SERVICES.AXD,
42278
+ path: (org, userId) => `/api/ai-mentor/orgs/${org}/users/${userId}/memsearch-config/`,
42247
42279
  },
42248
- };
42249
- const MEMORY_QUERY_KEYS = {
42250
- GET_MEMORIES: () => ['MEMORIES'],
42251
- GET_MEMORY_CATEGORIES: () => ['MEMORY_CATEGORIES'],
42252
- GET_MENTOR_USER_SETTINGS: () => ['MENTOR_USER_SETTINGS'],
42253
- GET_FILTERED_MEMORIES: () => ['FILTERED_MEMORIES'],
42254
42280
  };
42255
42281
 
42256
42282
  const memoryApiSlice = createApi({
42257
42283
  reducerPath: MEMORY_REDUCER_PATH,
42258
42284
  tagTypes: [
42259
- ...MEMORY_QUERY_KEYS.GET_MEMORIES(),
42260
- ...MEMORY_QUERY_KEYS.GET_MEMORY_CATEGORIES(),
42261
- ...MEMORY_QUERY_KEYS.GET_MENTOR_USER_SETTINGS(),
42262
- ...MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42285
+ ...MEMORY_QUERY_KEYS.MEMSEARCH_USER_SETTINGS(),
42286
+ ...MEMORY_QUERY_KEYS.MEMSEARCH_GLOBAL_MEMORIES(),
42287
+ ...MEMORY_QUERY_KEYS.MEMSEARCH_MENTOR_MEMORIES(),
42288
+ ...MEMORY_QUERY_KEYS.MEMSEARCH_MEMORY_CATEGORIES(),
42289
+ ...MEMORY_QUERY_KEYS.MEMSEARCH_PLATFORM_CONFIG(),
42263
42290
  ],
42264
42291
  baseQuery: iblFetchBaseQuery,
42265
42292
  endpoints: (builder) => ({
42266
- getMemories: builder.query({
42267
- query: (args) => {
42268
- return {
42269
- url: MEMORY_ENDPOINTS.GET_MEMORIES.path(args.tenantKey, args.username),
42270
- params: args.params,
42271
- service: MEMORY_ENDPOINTS.GET_MEMORIES.service,
42272
- };
42273
- },
42274
- providesTags: MEMORY_QUERY_KEYS.GET_MEMORIES(),
42293
+ // User Memory Settings
42294
+ getUserMemorySettings: builder.query({
42295
+ query: (args) => ({
42296
+ url: MEMSEARCH_ENDPOINTS.GET_USER_SETTINGS.path(args.org, args.userId),
42297
+ service: MEMSEARCH_ENDPOINTS.GET_USER_SETTINGS.service,
42298
+ }),
42299
+ providesTags: MEMORY_QUERY_KEYS.MEMSEARCH_USER_SETTINGS(),
42275
42300
  }),
42276
- getMemoryCategories: builder.query({
42277
- query: (args) => {
42278
- return {
42279
- url: MEMORY_ENDPOINTS.GET_MEMORY_CATEGORIES.path(args.tenantKey, args.username),
42280
- service: MEMORY_ENDPOINTS.GET_MEMORY_CATEGORIES.service,
42281
- };
42282
- },
42283
- providesTags: MEMORY_QUERY_KEYS.GET_MEMORY_CATEGORIES(),
42301
+ updateUserMemorySettings: builder.mutation({
42302
+ query: (args) => ({
42303
+ url: MEMSEARCH_ENDPOINTS.UPDATE_USER_SETTINGS.path(args.org, args.userId),
42304
+ service: MEMSEARCH_ENDPOINTS.UPDATE_USER_SETTINGS.service,
42305
+ method: 'PUT',
42306
+ body: args.settings,
42307
+ }),
42308
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_USER_SETTINGS(),
42284
42309
  }),
42285
- getMentorUserSettings: builder.query({
42286
- query: (args) => {
42287
- return {
42288
- url: MEMORY_ENDPOINTS.GET_MENTOR_USER_SETTINGS.path(args.tenantKey, args.username, args.mentorId),
42289
- service: MEMORY_ENDPOINTS.GET_MENTOR_USER_SETTINGS.service,
42290
- };
42291
- },
42292
- providesTags: MEMORY_QUERY_KEYS.GET_MENTOR_USER_SETTINGS(),
42310
+ // Global Memories
42311
+ getGlobalMemories: builder.query({
42312
+ query: (args) => ({
42313
+ url: MEMSEARCH_ENDPOINTS.GET_GLOBAL_MEMORIES.path(args.org, args.userId),
42314
+ service: MEMSEARCH_ENDPOINTS.GET_GLOBAL_MEMORIES.service,
42315
+ params: args.params,
42316
+ }),
42317
+ providesTags: MEMORY_QUERY_KEYS.MEMSEARCH_GLOBAL_MEMORIES(),
42293
42318
  }),
42294
- updateMentorUserSettings: builder.mutation({
42295
- query: (args) => {
42296
- return {
42297
- url: MEMORY_ENDPOINTS.UPDATE_MENTOR_USER_SETTINGS.path(args.tenantKey, args.username, args.mentorId),
42298
- method: 'POST',
42299
- body: args.settings,
42300
- service: MEMORY_ENDPOINTS.UPDATE_MENTOR_USER_SETTINGS.service,
42301
- };
42302
- },
42303
- invalidatesTags: MEMORY_QUERY_KEYS.GET_MENTOR_USER_SETTINGS(),
42319
+ createGlobalMemory: builder.mutation({
42320
+ query: (args) => ({
42321
+ url: MEMSEARCH_ENDPOINTS.CREATE_GLOBAL_MEMORY.path(args.org, args.userId),
42322
+ service: MEMSEARCH_ENDPOINTS.CREATE_GLOBAL_MEMORY.service,
42323
+ method: 'POST',
42324
+ body: { content: args.content },
42325
+ }),
42326
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_GLOBAL_MEMORIES(),
42304
42327
  }),
42305
- deleteMemory: builder.mutation({
42306
- query: (args) => {
42307
- return {
42308
- url: MEMORY_ENDPOINTS.DELETE_MEMORY.path(args.tenantKey, args.username, args.memoryId),
42309
- method: 'DELETE',
42310
- service: MEMORY_ENDPOINTS.DELETE_MEMORY.service,
42311
- };
42312
- },
42313
- invalidatesTags: [
42314
- ...MEMORY_QUERY_KEYS.GET_MEMORIES(),
42315
- ...MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42316
- ],
42328
+ deleteGlobalMemory: builder.mutation({
42329
+ query: (args) => ({
42330
+ url: MEMSEARCH_ENDPOINTS.DELETE_GLOBAL_MEMORY.path(args.org, args.userId, args.memoryId),
42331
+ service: MEMSEARCH_ENDPOINTS.DELETE_GLOBAL_MEMORY.service,
42332
+ method: 'DELETE',
42333
+ }),
42334
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_GLOBAL_MEMORIES(),
42317
42335
  }),
42318
- deleteMemoryByCategory: builder.mutation({
42319
- query: (args) => {
42320
- return {
42321
- url: MEMORY_ENDPOINTS.DELETE_MEMORY_BY_CATEGORY.path(args.tenantKey, args.username, args.category),
42322
- method: 'DELETE',
42323
- service: MEMORY_ENDPOINTS.DELETE_MEMORY_BY_CATEGORY.service,
42324
- };
42325
- },
42326
- invalidatesTags: [
42327
- ...MEMORY_QUERY_KEYS.GET_MEMORIES(),
42328
- ...MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42329
- ],
42336
+ // Mentor-Specific Memories
42337
+ getMentorMemories: builder.query({
42338
+ query: (args) => ({
42339
+ url: MEMSEARCH_ENDPOINTS.GET_MENTOR_MEMORIES.path(args.org, args.userId, args.mentorId),
42340
+ service: MEMSEARCH_ENDPOINTS.GET_MENTOR_MEMORIES.service,
42341
+ params: args.params,
42342
+ }),
42343
+ providesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MENTOR_MEMORIES(),
42330
42344
  }),
42331
- updateMemoryEntry: builder.mutation({
42332
- query: (args) => {
42333
- return {
42334
- url: MEMORY_ENDPOINTS.UPDATE_MEMORY_ENTRY.path(args.tenantKey, args.username, args.entryId),
42335
- method: 'POST',
42336
- body: args.data,
42337
- service: MEMORY_ENDPOINTS.UPDATE_MEMORY_ENTRY.service,
42338
- };
42339
- },
42340
- invalidatesTags: [
42341
- ...MEMORY_QUERY_KEYS.GET_MEMORIES(),
42342
- ...MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42343
- ],
42345
+ createMentorMemory: builder.mutation({
42346
+ query: (args) => ({
42347
+ url: MEMSEARCH_ENDPOINTS.CREATE_MENTOR_MEMORY.path(args.org, args.userId, args.mentorId),
42348
+ service: MEMSEARCH_ENDPOINTS.CREATE_MENTOR_MEMORY.service,
42349
+ method: 'POST',
42350
+ body: args.data,
42351
+ }),
42352
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MENTOR_MEMORIES(),
42344
42353
  }),
42345
- createMemory: builder.mutation({
42346
- query: (args) => {
42347
- return {
42348
- url: MEMORY_ENDPOINTS.CREATE_MEMORY.path(args.tenantKey, args.username),
42349
- method: 'POST',
42350
- body: args.data,
42351
- service: MEMORY_ENDPOINTS.CREATE_MEMORY.service,
42352
- };
42353
- },
42354
- invalidatesTags: [
42355
- ...MEMORY_QUERY_KEYS.GET_MEMORIES(),
42356
- ...MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42357
- ],
42354
+ updateMentorMemory: builder.mutation({
42355
+ query: (args) => ({
42356
+ url: MEMSEARCH_ENDPOINTS.UPDATE_MENTOR_MEMORY.path(args.org, args.userId, args.mentorId, args.memoryId),
42357
+ service: MEMSEARCH_ENDPOINTS.UPDATE_MENTOR_MEMORY.service,
42358
+ method: 'PATCH',
42359
+ body: args.data,
42360
+ }),
42361
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MENTOR_MEMORIES(),
42358
42362
  }),
42359
- getMemoryFilters: builder.query({
42360
- query: (args) => {
42361
- return {
42362
- url: MEMORY_ENDPOINTS.GET_MEMORY_FILTERS.path(args.tenantKey, args.username),
42363
- service: MEMORY_ENDPOINTS.GET_MEMORY_FILTERS.service,
42364
- };
42365
- },
42363
+ deleteMentorMemory: builder.mutation({
42364
+ query: (args) => ({
42365
+ url: MEMSEARCH_ENDPOINTS.DELETE_MENTOR_MEMORY.path(args.org, args.userId, args.mentorId, args.memoryId),
42366
+ service: MEMSEARCH_ENDPOINTS.DELETE_MENTOR_MEMORY.service,
42367
+ method: 'DELETE',
42368
+ }),
42369
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MENTOR_MEMORIES(),
42366
42370
  }),
42367
- getFilteredMemories: builder.query({
42368
- query: (args) => {
42369
- return {
42370
- url: MEMORY_ENDPOINTS.GET_FILTERED_MEMORIES.path(args.tenantKey, args.username),
42371
- params: args.params,
42372
- service: MEMORY_ENDPOINTS.GET_FILTERED_MEMORIES.service,
42373
- };
42374
- },
42375
- providesTags: MEMORY_QUERY_KEYS.GET_FILTERED_MEMORIES(),
42371
+ // Memory Categories (Admin)
42372
+ getMemoryCategoriesAdmin: builder.query({
42373
+ query: (args) => ({
42374
+ url: MEMSEARCH_ENDPOINTS.GET_MEMSEARCH_CATEGORIES.path(args.org, args.mentorId),
42375
+ service: MEMSEARCH_ENDPOINTS.GET_MEMSEARCH_CATEGORIES.service,
42376
+ }),
42377
+ providesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MEMORY_CATEGORIES(),
42378
+ }),
42379
+ createMemoryCategory: builder.mutation({
42380
+ query: (args) => ({
42381
+ url: MEMSEARCH_ENDPOINTS.CREATE_MEMSEARCH_CATEGORY.path(args.org, args.mentorId),
42382
+ service: MEMSEARCH_ENDPOINTS.CREATE_MEMSEARCH_CATEGORY.service,
42383
+ method: 'POST',
42384
+ body: args.data,
42385
+ }),
42386
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MEMORY_CATEGORIES(),
42387
+ }),
42388
+ updateMemoryCategory: builder.mutation({
42389
+ query: (args) => ({
42390
+ url: MEMSEARCH_ENDPOINTS.UPDATE_MEMSEARCH_CATEGORY.path(args.org, args.mentorId, args.categoryId),
42391
+ service: MEMSEARCH_ENDPOINTS.UPDATE_MEMSEARCH_CATEGORY.service,
42392
+ method: 'PATCH',
42393
+ body: args.data,
42394
+ }),
42395
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MEMORY_CATEGORIES(),
42396
+ }),
42397
+ deleteMemoryCategory: builder.mutation({
42398
+ query: (args) => ({
42399
+ url: MEMSEARCH_ENDPOINTS.DELETE_MEMSEARCH_CATEGORY.path(args.org, args.mentorId, args.categoryId),
42400
+ service: MEMSEARCH_ENDPOINTS.DELETE_MEMSEARCH_CATEGORY.service,
42401
+ method: 'DELETE',
42402
+ }),
42403
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_MEMORY_CATEGORIES(),
42404
+ }),
42405
+ // Platform Configuration
42406
+ getMemsearchConfig: builder.query({
42407
+ query: (args) => ({
42408
+ url: MEMSEARCH_ENDPOINTS.GET_MEMSEARCH_CONFIG.path(args.org, args.userId),
42409
+ service: MEMSEARCH_ENDPOINTS.GET_MEMSEARCH_CONFIG.service,
42410
+ }),
42411
+ providesTags: MEMORY_QUERY_KEYS.MEMSEARCH_PLATFORM_CONFIG(),
42412
+ }),
42413
+ updateMemsearchConfig: builder.mutation({
42414
+ query: (args) => ({
42415
+ url: MEMSEARCH_ENDPOINTS.UPDATE_MEMSEARCH_CONFIG.path(args.org, args.userId),
42416
+ service: MEMSEARCH_ENDPOINTS.UPDATE_MEMSEARCH_CONFIG.service,
42417
+ method: 'POST',
42418
+ body: args.config,
42419
+ }),
42420
+ invalidatesTags: MEMORY_QUERY_KEYS.MEMSEARCH_PLATFORM_CONFIG(),
42376
42421
  }),
42377
42422
  }),
42378
42423
  });
42379
- const { useGetMemoriesQuery, useLazyGetMemoriesQuery, useGetMemoryCategoriesQuery, useLazyGetMemoryCategoriesQuery, useGetMentorUserSettingsQuery, useLazyGetMentorUserSettingsQuery, useUpdateMentorUserSettingsMutation, useDeleteMemoryMutation, useDeleteMemoryByCategoryMutation, useUpdateMemoryEntryMutation, useCreateMemoryMutation, useGetMemoryFiltersQuery, useLazyGetMemoryFiltersQuery, useGetFilteredMemoriesQuery, useLazyGetFilteredMemoriesQuery, } = memoryApiSlice;
42424
+ const { useGetUserMemorySettingsQuery, useLazyGetUserMemorySettingsQuery, useUpdateUserMemorySettingsMutation, useGetGlobalMemoriesQuery, useLazyGetGlobalMemoriesQuery, useCreateGlobalMemoryMutation, useDeleteGlobalMemoryMutation, useGetMentorMemoriesQuery, useLazyGetMentorMemoriesQuery, useCreateMentorMemoryMutation, useUpdateMentorMemoryMutation, useDeleteMentorMemoryMutation, useGetMemoryCategoriesAdminQuery, useLazyGetMemoryCategoriesAdminQuery, useCreateMemoryCategoryMutation, useUpdateMemoryCategoryMutation, useDeleteMemoryCategoryMutation, useGetMemsearchConfigQuery, useLazyGetMemsearchConfigQuery, useUpdateMemsearchConfigMutation, } = memoryApiSlice;
42380
42425
 
42381
42426
  const MCP_REDUCER_PATH = 'mcpApiSlice';
42382
42427
  const MCP_ENDPOINTS = {
@@ -43545,5 +43590,5 @@ const initializeDataLayer = (dmUrl, lmsUrl, legacyLmsUrl, storageService, httpEr
43545
43590
  Config.httpErrorHandlers = httpErrorHandler;
43546
43591
  };
43547
43592
 
43548
- export { APP_IDENTIFIERS, CORE_CUSTOM_ENDPOINTS, CORE_CUSTOM_REDUCER_PATH, CORE_FAKE_CUSTOM_REDUCER_PATH, CREDENTIALS_CUSTOM_ENDPOINTS, CREDENTIALS_CUSTOM_REDUCER_PATH, CUSTOM_AI_SEARCH_ENDPOINTS, CUSTOM_AI_SEARCH_QUERY_KEYS, CUSTOM_AI_SEARCH_REDUCER_PATH, CUSTOM_DOMAIN_ENDPOINTS, CUSTOM_DOMAIN_QUERY_KEYS, CUSTOM_DOMAIN_REDUCER_PATH, DISCLAIMERS_ENDPOINTS, DISCLAIMERS_QUERY_KEYS, DISCLAIMERS_REDUCER_PATH, EDX_PROCTORING_ENDPOINTS, IblDataLayer, LOGO_ENDPOINTS, MCP_ENDPOINTS, MCP_REDUCER_PATH, MCP_TAG_TYPES, MEMORY_ENDPOINTS, MEMORY_QUERY_KEYS, MEMORY_REDUCER_PATH, MENTORS_QUERY_KEYS, MENTORS_REDUCER_PATH, MENTOR_CUSTOM_ENDPOINTS, MENTOR_CUSTOM_REDUCER_PATH, MENTOR_ENDPOINTS, NOTIFICATIONS_CUSTOM_ENDPOINTS, NOTIFICATIONS_CUSTOM_REDUCER_PATH, NOTIFICATIONS_CUSTOM_TAGS, PLATFORM_CONFIGURATION_TAG, PLATFORM_CUSTOM_ENDPOINTS, PLATFORM_CUSTOM_REDUCER_PATH, PLATFORM_MEMBERSHIP_TAG, PROJECTS_CUSTOM_ENDPOINTS, PROJECTS_CUSTOM_REDUCER_PATH, PROJECTS_QUERY_KEYS, QUERY_PARAMS, RETIREMENT_ENDPOINTS, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, WORKFLOWS_ENDPOINTS, WORKFLOWS_QUERY_KEYS, WORKFLOWS_REDUCER_PATH, analyticsApiSlice, analyticsCustomSlice, apiKeysApiReducer, apiKeysApiSlice, appApiReducer, appApiSlice, artifactsApiReducer, artifactsApiSlice, authApiSlice, billingApiSlice, billingCustomSlice, careerApiSlice, catalogApiSlice, chatApiSlice, chatFilesApiSlice, chatHistoryApiSlice, coreApiSlice, coreCustomApiSlice, coreFakeCustomPublicImageAssetApiSlice, credentialsApiSlice, credentialsCustomApiSlice, customAiSearchApiSlice, customDomainApiSlice, datasetsApiSlice, disclaimersApiSlice, edxProctoringApiSlice, fakeBaseQueryWithLogging, featureTags, iblFakeBaseQuery, initializeDataLayer, isPoliciesResponse, llmsApiSlice, mcpApiSlice, memoryApiSlice, mentorApiReducer, mentorApiSlice, mentorCategoriesApiSlice, mentorCustomApiSlice, mentorMiddleware, mentorReducer, moderationLogsApiReducer, moderationLogsApiSlice, notificationsApiSlice, notificationsCustomApiSlice, perLearnerApiSlice, platformApiReducer, platformApiSlice, platformCustomApiSlice, projectsApiSlice, promptsApiSlice, recommendationPromptTypeEnum, reportsApiSlice, retirementApiSlice, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useActivateWorkflowMutation, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, useChatWithWorkflowMutation, useConnectedServicesCallbackQuery, useCreateAdminProjectMutation, useCreateApiKeyMutation, useCreateCallCredentialsMutation, useCreateCatalogInvitationBulkMutation, useCreateCatalogInvitationCourseBulkMutation, useCreateCatalogInvitationCourseMutation, useCreateCatalogInvitationProgramBulkMutation, useCreateCatalogInvitationProgramMutation, useCreateCatalogPathwayEnrollmentMutation, useCreateCatalogPathwayMutation, useCreateCatalogPathwaySelfEnrollmentMutation, useCreateCatalogProgramMutation, useCreateCatalogProgramSelfEnrollmentMutation, useCreateCatalogRoleMutation, useCreateCredentialAssertionMutation, useCreateCredentialMutation, useCreateCustomDomainMutation, useCreateDisclaimerMutation, useCreateExternalMappingMutation, useCreateIntegrationCredentialMutation, useCreateLLMCredentialMutation, useCreateMCPServerConnectionMutation, useCreateMCPServerMutation, useCreateMemoryMutation, useCreateMentorMutation, useCreateNotificationPreviewMutation, useCreateOrUpdateUserDesiredSkillMutation, useCreateOrUpdateUserReportedSkillMutation, useCreatePlatformImageAssetMutation, useCreatePlatformUserGroupMutation, useCreatePromptMutation, useCreateProviderConfigMutation, useCreateRbacGroupMutation, useCreateRbacPolicyMutation, useCreateRbacRoleMutation, useCreateRbacTeamsAccessMutation, useCreateRecommendedPromptMutation, useCreateRedirectTokenMutation, useCreateReportMutation, useCreateSessionIdMutation, useCreateShareableLinkMutation, useCreateStripeCheckoutSessionMutation, useCreateStripeCustomerPortalMutation, useCreateTrainingDocumentRetrainScheduleMutation, useCreateUserCompanyMutation, useCreateUserEducationMutation, useCreateUserExperienceMutation, useCreateUserInstitutionMutation, useCreateUserInvitationMutation, useCreateUserProjectMutation, useCreateUserResumeMutation, useCreateWorkflowMutation, useDeactivateWorkflowMutation, useDeleteAdminProjectMutation, useDeleteApiKeyMutation, useDeleteCourseCredentialMutation, useDeleteCredentialMutation, useDeleteCustomDomainMutation, useDeleteDisclaimerMutation, useDeleteExternalMappingMutation, useDeleteIntegrationCredentialMutation, useDeleteMCPServerMutation, useDeleteMemoryByCategoryMutation, useDeleteMemoryMutation, useDeleteMentorMutation, useDeleteMessageMutation, useDeleteModerationLogMutation, useDeletePlatformConfigurationMutation, useDeletePlatformImageAssetMutation, useDeletePlatformUserGroupMutation, useDeletePromptMutation, useDeleteProviderConfigMutation, useDeleteRbacGroupMutation, useDeleteRbacPolicyMutation, useDeleteRbacRoleMutation, useDeleteRecommendedPromptMutation, useDeleteTrainingDocumentMutation, useDeleteUserEducationMutation, useDeleteUserExperienceMutation, useDeleteUserProjectMutation, useDeleteWorkflowMutation, useDisconnectServiceMutation, useEditMentorAndRefreshListMutation, useEditMentorJsonMutation, useEditMentorMutation, useEditSessionMutation, useEditTrainingDocumentMutation, useExchangeAppleTokenMutation, useExportChatHistoryMutation, useForkMentorMutation, useGetAccessTimeHeatmapQuery, useGetAccountBillingInfoQuery, useGetAdminProjectDetailsQuery, useGetAdminProjectsQuery, useGetAiSearchMentorsQuery, useGetApiKeysQuery, useGetAppTokensMutation, useGetArtifactQuery, useGetArtifactVersionQuery, useGetAverageMessagesPerSessionQuery, useGetAverageRatingQuery, useGetCatalogInvitationsCourseQuery, useGetCatalogInvitationsProgramQuery, useGetCatalogSearchQuery, useGetChatHistoryExportStatusQuery, useGetChatHistoryFilterQuery, useGetChatHistoryQuery, useGetChatMessagesForSessionQuery, useGetConnectedServiceAuthUrlQuery, useGetConnectedServicesQuery, useGetContentAnalyticsDetailsQuery, useGetContentAnalyticsQuery, useGetConversationMemoriesQuery, useGetConversationQuery, useGetCredentialsListQuery, useGetCredentialsQuery, useGetCredentialsSchemaQuery, useGetCustomDomainsQuery, useGetCustomMentorsQuery, useGetDatasetsQuery, useGetDesiredSkillsQuery, useGetDetailedFinancialStatsQuery, useGetDisclaimersQuery, useGetDownloadReportFromURLQuery, useGetEnrollmentCourseSearchQuery, useGetExamInfoQuery, useGetExternalMappingQuery, useGetFileUploadUrlMutation, useGetFilteredMemoriesQuery, useGetFinancialStatsQuery, useGetFreeUsageCountQuery, useGetGuidedPromptsQuery, useGetIntegrationCredentialsQuery, useGetIntegrationCredentialsSchemaQuery, useGetIssuersQuery, useGetLLMCredentialsQuery, useGetLlmsQuery, useGetMCPServerConnectionsQuery, useGetMCPServerQuery, useGetMCPServersQuery, useGetMaskedIntegrationCredentialsQuery, useGetMaskedLLMCredentialsQuery, useGetMemoriesQuery, useGetMemoryCategoriesQuery, useGetMemoryFiltersQuery, useGetMentorCategoriesQuery, useGetMentorCategoryGroupsQuery, useGetMentorDetailsQuery, useGetMentorPublicSettingsQuery, useGetMentorSettingsQuery, useGetMentorSummariesQuery, useGetMentorUserSettingsQuery, useGetMentorsQuery, useGetMfeContextQuery, useGetModerationLogsQuery, useGetMostDiscussedTopicsQuery, useGetNodeTypesQuery, useGetNotificationContextQuery, useGetNotificationsCountQuery, useGetNotificationsQuery, useGetOAuthServicesQuery, useGetOverTimeActivityQuery, useGetOverviewSummaryQuery, useGetPathwayCompletionQuery, useGetPathwayListQuery, useGetPerLearnerActivityQuery, useGetPerLearnerInfoQuery, useGetPersonnalizedMentorsQuery, useGetPersonnalizedSearchQuery, useGetPinnedMessagesQuery, useGetPlatformConfigurationsQuery, useGetPlatformImageAssetDetailsQuery, useGetPlatformImageAssetsListQuery, useGetPlatformInfoQuery, useGetPlatformMembershipQuery, useGetPlatformUserGroupDetailsQuery, useGetProgramCompletionQuery, useGetProgramListQuery, useGetPromptCategoriesQuery, useGetPromptsQuery, useGetPromptsSearchQuery, useGetProviderConfigQuery, useGetPublicMentorsQuery, useGetPublicPlatformImageAssetFileUrlQuery, useGetRbacGroupDetailsQuery, useGetRbacGroupsQuery, useGetRbacMentorAccessListQuery, useGetRbacPermissionsMutation, useGetRbacPoliciesQuery, useGetRbacPolicyDetailsQuery, useGetRbacRoleDetailsQuery, useGetRbacRolesQuery, useGetRbacTeamsAccessListQuery, useGetRecentMessageQuery, useGetRecentlyAccessedMentorsQuery, useGetRecommendationsAiSearchQuery, useGetRecommendedPromptsListQuery, useGetRegisteredUsersTrendQuery, useGetReportDetailQuery, useGetReportedSkillsQuery, useGetReportsQuery, useGetResourceSearchQuery, useGetSessionIdQuery, useGetSessionStatsQuery, useGetShareableLinkPublicQuery, useGetShareableLinkQuery, useGetSharedSessionIdQuery, useGetSkillsPointsPercentileQuery, useGetStripeContextQuery, useGetStripePricingPageSessionQuery, useGetStudentMentorCreationStatusQuery, useGetTemplateDetailsQuery, useGetTemplatesQuery, useGetTenantMetadataQuery, useGetToolsQuery, useGetTopStudentsByChatMessagesQuery, useGetTopicOverviewQuery, useGetTopicStatisticsQuery, useGetTopicsDetailsStatsQuery, useGetTopicsStatsQuery, useGetTopicsSummaryQuery, useGetTrainingDocumentRetrainScheduleQuery, useGetTrainingDocumentsQuery, useGetTranscriptsConversationHeadlineQuery, useGetTranscriptsMessagesDetailsQuery, useGetTranscriptsMessagesQuery, useGetUserAppsQuery, useGetUserAssignedPathwaysQuery, useGetUserCohortsOverTimeQuery, useGetUserCompaniesQuery, useGetUserCredentialsQuery, useGetUserDesiredSkillsQuery, useGetUserDetailsStatsQuery, useGetUserEarnedSkillsQuery, useGetUserEducationQuery, useGetUserEnrolledPathwaysQuery, useGetUserEnrolledProgramsQuery, useGetUserExperienceQuery, useGetUserInstitutionsQuery, useGetUserInvitationsQuery, useGetUserMetadataEdxQuery, useGetUserMetadataQuery, useGetUserMetricsPieChartQuery, useGetUserMetricsQuery, useGetUserProjectDetailsQuery, useGetUserProjectsQuery, useGetUserReportedSkillsQuery, useGetUserResumeQuery, useGetUserSkillsPointsQuery, useGetUserTenantsQuery, useGetUsersAsAssertionsQuery, useGetUsersStatsQuery, useGetVectorDocumentsQuery, useGetWorkflowQuery, useGetWorkflowsQuery, useInviteUserMutation, useJoinTenantMutation, useLazyConnectedServicesCallbackQuery, useLazyGetAccountBillingInfoQuery, useLazyGetAdminProjectDetailsQuery, useLazyGetAdminProjectsQuery, useLazyGetApiKeysQuery, useLazyGetArtifactQuery, useLazyGetArtifactVersionQuery, useLazyGetCatalogInvitationsCourseQuery, useLazyGetCatalogInvitationsProgramQuery, useLazyGetCatalogSearchQuery, useLazyGetChatHistoryExportStatusQuery, useLazyGetChatHistoryFilterQuery, useLazyGetChatHistoryQuery, useLazyGetChatMessagesForSessionQuery, useLazyGetConnectedServiceAuthUrlQuery, useLazyGetConnectedServicesQuery, useLazyGetConversationMemoriesQuery, useLazyGetCredentialsListQuery, useLazyGetCredentialsQuery, useLazyGetCredentialsSchemaQuery, useLazyGetCustomDomainsQuery, useLazyGetCustomMentorsQuery, useLazyGetDatasetsQuery, useLazyGetDesiredSkillsQuery, useLazyGetDisclaimersQuery, useLazyGetDownloadReportFromURLQuery, useLazyGetEnrollmentCourseSearchQuery, useLazyGetExamInfoQuery, useLazyGetExternalMappingQuery, useLazyGetFilteredMemoriesQuery, useLazyGetFreeUsageCountQuery, useLazyGetGuidedPromptsQuery, useLazyGetIntegrationCredentialsQuery, useLazyGetIntegrationCredentialsSchemaQuery, useLazyGetIssuersQuery, useLazyGetLLMCredentialsQuery, useLazyGetLlmsQuery, useLazyGetMCPServerQuery, useLazyGetMCPServersQuery, useLazyGetMemoriesQuery, useLazyGetMemoryCategoriesQuery, useLazyGetMemoryFiltersQuery, useLazyGetMentorCategoriesQuery, useLazyGetMentorCategoryGroupsQuery, useLazyGetMentorDetailsQuery, useLazyGetMentorPublicSettingsQuery, useLazyGetMentorSettingsQuery, useLazyGetMentorSummariesQuery, useLazyGetMentorUserSettingsQuery, useLazyGetMentorsQuery, useLazyGetModerationLogsQuery, useLazyGetNodeTypesQuery, useLazyGetNotificationContextQuery, useLazyGetNotificationsCountQuery, useLazyGetNotificationsQuery, useLazyGetOAuthServicesQuery, useLazyGetOverTimeActivityQuery, useLazyGetPathwayCompletionQuery, useLazyGetPathwayListQuery, useLazyGetPerLearnerActivityQuery, useLazyGetPerLearnerInfoQuery, useLazyGetPersonnalizedMentorsQuery, useLazyGetPersonnalizedSearchQuery, useLazyGetPinnedMessagesQuery, useLazyGetPlatformInfoQuery, useLazyGetPlatformMembershipQuery, useLazyGetProgramCompletionQuery, useLazyGetProgramListQuery, useLazyGetPromptCategoriesQuery, useLazyGetPromptsQuery, useLazyGetPromptsSearchQuery, useLazyGetProviderConfigQuery, useLazyGetPublicMentorsQuery, useLazyGetPublicPlatformImageAssetFileUrlQuery, useLazyGetRbacRolesQuery, useLazyGetRbacTeamsAccessListQuery, useLazyGetRecentMessageQuery, useLazyGetRecentlyAccessedMentorsQuery, useLazyGetRecommendationsAiSearchQuery, useLazyGetRecommendedPromptsListQuery, useLazyGetReportDetailQuery, useLazyGetReportedSkillsQuery, useLazyGetReportsQuery, useLazyGetResourceSearchQuery, useLazyGetSessionIdQuery, useLazyGetShareableLinkPublicQuery, useLazyGetShareableLinkQuery, useLazyGetSharedSessionIdQuery, useLazyGetSkillsPointsPercentileQuery, useLazyGetStripeContextQuery, useLazyGetStripePricingPageSessionQuery, useLazyGetTemplateDetailsQuery, useLazyGetTemplatesQuery, useLazyGetTenantMetadataQuery, useLazyGetToolsQuery, useLazyGetTrainingDocumentRetrainScheduleQuery, useLazyGetTrainingDocumentsQuery, useLazyGetUserAppsQuery, useLazyGetUserAssignedPathwaysQuery, useLazyGetUserCompaniesQuery, useLazyGetUserCredentialsQuery, useLazyGetUserDesiredSkillsQuery, useLazyGetUserEarnedSkillsQuery, useLazyGetUserEducationQuery, useLazyGetUserEnrolledPathwaysQuery, useLazyGetUserEnrolledProgramsQuery, useLazyGetUserExperienceQuery, useLazyGetUserInstitutionsQuery, useLazyGetUserInvitationsQuery, useLazyGetUserMetadataEdxQuery, useLazyGetUserMetadataQuery, useLazyGetUserProjectDetailsQuery, useLazyGetUserProjectsQuery, useLazyGetUserReportedSkillsQuery, useLazyGetUserResumeQuery, useLazyGetUserSkillsPointsQuery, useLazyGetUserTenantsQuery, useLazyGetUsersAsAssertionsQuery, useLazyGetVectorDocumentsQuery, useLazyGetWorkflowQuery, useLazyGetWorkflowsQuery, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePatchWorkflowMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, usePublishWorkflowMutation, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSelfRetireMutation, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, useUnpublishWorkflowMutation, useUnstarMentorMutation, useUpdateAdminProjectMutation, useUpdateArtifactMutation, useUpdateAutoRechargeInfoMutation, useUpdateChatSessionMutation, useUpdateChatSessionSharedMutation, useUpdateCredentialMutation, useUpdateDisclaimerMutation, useUpdateExamAttemptMutation, useUpdateIntegrationCredentialMutation, useUpdateMCPServerMutation, useUpdateMemoryEntryMutation, useUpdateMentorUserSettingsMutation, useUpdateMessageFeedbackMutation, useUpdatePlatformImageAssetMutation, useUpdatePlatformInfoMutation, useUpdatePlatformMembershipMutation, useUpdatePlatformUserGroupMutation, useUpdatePlatformUserRoleWithPoliciesMutation, useUpdatePromptMutation, useUpdateRbacGroupMutation, useUpdateRbacMentorAccessMutation, useUpdateRbacPolicyMutation, useUpdateRbacRoleMutation, useUpdateRecommendedPromptMutation, useUpdateShareableLinkMutation, useUpdateTemplateMutation, useUpdateTenantMetadataMutation, useUpdateUserAccountMutation, useUpdateUserEducationMutation, useUpdateUserExperienceMutation, useUpdateUserMetadataEdxMutation, useUpdateUserMetadataMutation, useUpdateUserOnboardingStatusMutation, useUpdateUserProjectMutation, useUpdateUserRoleMutation, useUpdateUserStatusMutation, useUpdateUserTrialStatusMutation, useUpdateWorkflowMutation, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, useValidateWorkflowMutation, userApiSlice, userInvitationsApiSlice, workflowsApiSlice };
43593
+ export { APP_IDENTIFIERS, CORE_CUSTOM_ENDPOINTS, CORE_CUSTOM_REDUCER_PATH, CORE_FAKE_CUSTOM_REDUCER_PATH, CREDENTIALS_CUSTOM_ENDPOINTS, CREDENTIALS_CUSTOM_REDUCER_PATH, CUSTOM_AI_SEARCH_ENDPOINTS, CUSTOM_AI_SEARCH_QUERY_KEYS, CUSTOM_AI_SEARCH_REDUCER_PATH, CUSTOM_DOMAIN_ENDPOINTS, CUSTOM_DOMAIN_QUERY_KEYS, CUSTOM_DOMAIN_REDUCER_PATH, DISCLAIMERS_ENDPOINTS, DISCLAIMERS_QUERY_KEYS, DISCLAIMERS_REDUCER_PATH, EDX_PROCTORING_ENDPOINTS, IblDataLayer, LOGO_ENDPOINTS, MCP_ENDPOINTS, MCP_REDUCER_PATH, MCP_TAG_TYPES, MEMORY_QUERY_KEYS, MEMORY_REDUCER_PATH, MEMSEARCH_ENDPOINTS, MENTORS_QUERY_KEYS, MENTORS_REDUCER_PATH, MENTOR_CUSTOM_ENDPOINTS, MENTOR_CUSTOM_REDUCER_PATH, MENTOR_ENDPOINTS, NOTIFICATIONS_CUSTOM_ENDPOINTS, NOTIFICATIONS_CUSTOM_REDUCER_PATH, NOTIFICATIONS_CUSTOM_TAGS, PLATFORM_CONFIGURATION_TAG, PLATFORM_CUSTOM_ENDPOINTS, PLATFORM_CUSTOM_REDUCER_PATH, PLATFORM_MEMBERSHIP_TAG, PROJECTS_CUSTOM_ENDPOINTS, PROJECTS_CUSTOM_REDUCER_PATH, PROJECTS_QUERY_KEYS, QUERY_PARAMS, RETIREMENT_ENDPOINTS, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, WORKFLOWS_ENDPOINTS, WORKFLOWS_QUERY_KEYS, WORKFLOWS_REDUCER_PATH, analyticsApiSlice, analyticsCustomSlice, apiKeysApiReducer, apiKeysApiSlice, appApiReducer, appApiSlice, artifactsApiReducer, artifactsApiSlice, authApiSlice, billingApiSlice, billingCustomSlice, careerApiSlice, catalogApiSlice, chatApiSlice, chatFilesApiSlice, chatHistoryApiSlice, coreApiSlice, coreCustomApiSlice, coreFakeCustomPublicImageAssetApiSlice, credentialsApiSlice, credentialsCustomApiSlice, customAiSearchApiSlice, customDomainApiSlice, datasetsApiSlice, disclaimersApiSlice, edxProctoringApiSlice, fakeBaseQueryWithLogging, featureTags, iblFakeBaseQuery, initializeDataLayer, isPoliciesResponse, llmsApiSlice, mcpApiSlice, memoryApiSlice, mentorApiReducer, mentorApiSlice, mentorCategoriesApiSlice, mentorCustomApiSlice, mentorMiddleware, mentorReducer, moderationLogsApiReducer, moderationLogsApiSlice, notificationsApiSlice, notificationsCustomApiSlice, perLearnerApiSlice, platformApiReducer, platformApiSlice, platformCustomApiSlice, projectsApiSlice, promptsApiSlice, recommendationPromptTypeEnum, reportsApiSlice, retirementApiSlice, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useActivateWorkflowMutation, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, useChatWithWorkflowMutation, useConnectedServicesCallbackQuery, useCreateAdminProjectMutation, useCreateApiKeyMutation, useCreateCallCredentialsMutation, useCreateCatalogInvitationBulkMutation, useCreateCatalogInvitationCourseBulkMutation, useCreateCatalogInvitationCourseMutation, useCreateCatalogInvitationProgramBulkMutation, useCreateCatalogInvitationProgramMutation, useCreateCatalogPathwayEnrollmentMutation, useCreateCatalogPathwayMutation, useCreateCatalogPathwaySelfEnrollmentMutation, useCreateCatalogProgramMutation, useCreateCatalogProgramSelfEnrollmentMutation, useCreateCatalogRoleMutation, useCreateCredentialAssertionMutation, useCreateCredentialMutation, useCreateCustomDomainMutation, useCreateDisclaimerMutation, useCreateExternalMappingMutation, useCreateGlobalMemoryMutation, useCreateIntegrationCredentialMutation, useCreateLLMCredentialMutation, useCreateMCPServerConnectionMutation, useCreateMCPServerMutation, useCreateMemoryCategoryMutation, useCreateMentorMemoryMutation, useCreateMentorMutation, useCreateNotificationPreviewMutation, useCreateOrUpdateUserDesiredSkillMutation, useCreateOrUpdateUserReportedSkillMutation, useCreatePlatformImageAssetMutation, useCreatePlatformUserGroupMutation, useCreatePromptMutation, useCreateProviderConfigMutation, useCreateRbacGroupMutation, useCreateRbacPolicyMutation, useCreateRbacRoleMutation, useCreateRbacTeamsAccessMutation, useCreateRecommendedPromptMutation, useCreateRedirectTokenMutation, useCreateReportMutation, useCreateSessionIdMutation, useCreateShareableLinkMutation, useCreateStripeCheckoutSessionMutation, useCreateStripeCustomerPortalMutation, useCreateTrainingDocumentRetrainScheduleMutation, useCreateUserCompanyMutation, useCreateUserEducationMutation, useCreateUserExperienceMutation, useCreateUserInstitutionMutation, useCreateUserInvitationMutation, useCreateUserProjectMutation, useCreateUserResumeMutation, useCreateWorkflowMutation, useDeactivateWorkflowMutation, useDeleteAdminProjectMutation, useDeleteApiKeyMutation, useDeleteCourseCredentialMutation, useDeleteCredentialMutation, useDeleteCustomDomainMutation, useDeleteDisclaimerMutation, useDeleteExternalMappingMutation, useDeleteGlobalMemoryMutation, useDeleteIntegrationCredentialMutation, useDeleteMCPServerMutation, useDeleteMemoryCategoryMutation, useDeleteMentorMemoryMutation, useDeleteMentorMutation, useDeleteMessageMutation, useDeleteModerationLogMutation, useDeletePlatformConfigurationMutation, useDeletePlatformImageAssetMutation, useDeletePlatformUserGroupMutation, useDeletePromptMutation, useDeleteProviderConfigMutation, useDeleteRbacGroupMutation, useDeleteRbacPolicyMutation, useDeleteRbacRoleMutation, useDeleteRecommendedPromptMutation, useDeleteTrainingDocumentMutation, useDeleteUserEducationMutation, useDeleteUserExperienceMutation, useDeleteUserProjectMutation, useDeleteWorkflowMutation, useDisconnectServiceMutation, useEditMentorAndRefreshListMutation, useEditMentorJsonMutation, useEditMentorMutation, useEditSessionMutation, useEditTrainingDocumentMutation, useExchangeAppleTokenMutation, useExportChatHistoryMutation, useForkMentorMutation, useGetAccessTimeHeatmapQuery, useGetAccountBillingInfoQuery, useGetAdminProjectDetailsQuery, useGetAdminProjectsQuery, useGetAiSearchMentorsQuery, useGetApiKeysQuery, useGetAppTokensMutation, useGetArtifactQuery, useGetArtifactVersionQuery, useGetAverageMessagesPerSessionQuery, useGetAverageRatingQuery, useGetCatalogInvitationsCourseQuery, useGetCatalogInvitationsProgramQuery, useGetCatalogSearchQuery, useGetChatHistoryExportStatusQuery, useGetChatHistoryFilterQuery, useGetChatHistoryQuery, useGetChatMessagesForSessionQuery, useGetConnectedServiceAuthUrlQuery, useGetConnectedServicesQuery, useGetContentAnalyticsDetailsQuery, useGetContentAnalyticsQuery, useGetConversationMemoriesQuery, useGetConversationQuery, useGetCredentialsListQuery, useGetCredentialsQuery, useGetCredentialsSchemaQuery, useGetCustomDomainsQuery, useGetCustomMentorsQuery, useGetDatasetsQuery, useGetDesiredSkillsQuery, useGetDetailedFinancialStatsQuery, useGetDisclaimersQuery, useGetDownloadReportFromURLQuery, useGetEnrollmentCourseSearchQuery, useGetExamInfoQuery, useGetExternalMappingQuery, useGetFileUploadUrlMutation, useGetFinancialStatsQuery, useGetFreeUsageCountQuery, useGetGlobalMemoriesQuery, useGetGuidedPromptsQuery, useGetIntegrationCredentialsQuery, useGetIntegrationCredentialsSchemaQuery, useGetIssuersQuery, useGetLLMCredentialsQuery, useGetLlmsQuery, useGetMCPServerConnectionsQuery, useGetMCPServerQuery, useGetMCPServersQuery, useGetMaskedIntegrationCredentialsQuery, useGetMaskedLLMCredentialsQuery, useGetMemoryCategoriesAdminQuery, useGetMemsearchConfigQuery, useGetMentorCategoriesQuery, useGetMentorCategoryGroupsQuery, useGetMentorDetailsQuery, useGetMentorMemoriesQuery, useGetMentorPublicSettingsQuery, useGetMentorSettingsQuery, useGetMentorSummariesQuery, useGetMentorsQuery, useGetMfeContextQuery, useGetModerationLogsQuery, useGetMostDiscussedTopicsQuery, useGetNodeTypesQuery, useGetNotificationContextQuery, useGetNotificationsCountQuery, useGetNotificationsQuery, useGetOAuthServicesQuery, useGetOverTimeActivityQuery, useGetOverviewSummaryQuery, useGetPathwayCompletionQuery, useGetPathwayListQuery, useGetPerLearnerActivityQuery, useGetPerLearnerInfoQuery, useGetPersonnalizedMentorsQuery, useGetPersonnalizedSearchQuery, useGetPinnedMessagesQuery, useGetPlatformConfigurationsQuery, useGetPlatformImageAssetDetailsQuery, useGetPlatformImageAssetsListQuery, useGetPlatformInfoQuery, useGetPlatformMembershipQuery, useGetPlatformUserGroupDetailsQuery, useGetProgramCompletionQuery, useGetProgramListQuery, useGetPromptCategoriesQuery, useGetPromptsQuery, useGetPromptsSearchQuery, useGetProviderConfigQuery, useGetPublicMentorsQuery, useGetPublicPlatformImageAssetFileUrlQuery, useGetRbacGroupDetailsQuery, useGetRbacGroupsQuery, useGetRbacMentorAccessListQuery, useGetRbacPermissionsMutation, useGetRbacPoliciesQuery, useGetRbacPolicyDetailsQuery, useGetRbacRoleDetailsQuery, useGetRbacRolesQuery, useGetRbacTeamsAccessListQuery, useGetRecentMessageQuery, useGetRecentlyAccessedMentorsQuery, useGetRecommendationsAiSearchQuery, useGetRecommendedPromptsListQuery, useGetRegisteredUsersTrendQuery, useGetReportDetailQuery, useGetReportedSkillsQuery, useGetReportsQuery, useGetResourceSearchQuery, useGetSessionIdQuery, useGetSessionStatsQuery, useGetShareableLinkPublicQuery, useGetShareableLinkQuery, useGetSharedSessionIdQuery, useGetSkillsPointsPercentileQuery, useGetStripeContextQuery, useGetStripePricingPageSessionQuery, useGetStudentMentorCreationStatusQuery, useGetTemplateDetailsQuery, useGetTemplatesQuery, useGetTenantMetadataQuery, useGetToolsQuery, useGetTopStudentsByChatMessagesQuery, useGetTopicOverviewQuery, useGetTopicStatisticsQuery, useGetTopicsDetailsStatsQuery, useGetTopicsStatsQuery, useGetTopicsSummaryQuery, useGetTrainingDocumentRetrainScheduleQuery, useGetTrainingDocumentsQuery, useGetTranscriptsConversationHeadlineQuery, useGetTranscriptsMessagesDetailsQuery, useGetTranscriptsMessagesQuery, useGetUserAppsQuery, useGetUserAssignedPathwaysQuery, useGetUserCohortsOverTimeQuery, useGetUserCompaniesQuery, useGetUserCredentialsQuery, useGetUserDesiredSkillsQuery, useGetUserDetailsStatsQuery, useGetUserEarnedSkillsQuery, useGetUserEducationQuery, useGetUserEnrolledPathwaysQuery, useGetUserEnrolledProgramsQuery, useGetUserExperienceQuery, useGetUserInstitutionsQuery, useGetUserInvitationsQuery, useGetUserMemorySettingsQuery, useGetUserMetadataEdxQuery, useGetUserMetadataQuery, useGetUserMetricsPieChartQuery, useGetUserMetricsQuery, useGetUserProjectDetailsQuery, useGetUserProjectsQuery, useGetUserReportedSkillsQuery, useGetUserResumeQuery, useGetUserSkillsPointsQuery, useGetUserTenantsQuery, useGetUsersAsAssertionsQuery, useGetUsersStatsQuery, useGetVectorDocumentsQuery, useGetWorkflowQuery, useGetWorkflowsQuery, useInviteUserMutation, useJoinTenantMutation, useLazyConnectedServicesCallbackQuery, useLazyGetAccountBillingInfoQuery, useLazyGetAdminProjectDetailsQuery, useLazyGetAdminProjectsQuery, useLazyGetApiKeysQuery, useLazyGetArtifactQuery, useLazyGetArtifactVersionQuery, useLazyGetCatalogInvitationsCourseQuery, useLazyGetCatalogInvitationsProgramQuery, useLazyGetCatalogSearchQuery, useLazyGetChatHistoryExportStatusQuery, useLazyGetChatHistoryFilterQuery, useLazyGetChatHistoryQuery, useLazyGetChatMessagesForSessionQuery, useLazyGetConnectedServiceAuthUrlQuery, useLazyGetConnectedServicesQuery, useLazyGetConversationMemoriesQuery, useLazyGetCredentialsListQuery, useLazyGetCredentialsQuery, useLazyGetCredentialsSchemaQuery, useLazyGetCustomDomainsQuery, useLazyGetCustomMentorsQuery, useLazyGetDatasetsQuery, useLazyGetDesiredSkillsQuery, useLazyGetDisclaimersQuery, useLazyGetDownloadReportFromURLQuery, useLazyGetEnrollmentCourseSearchQuery, useLazyGetExamInfoQuery, useLazyGetExternalMappingQuery, useLazyGetFreeUsageCountQuery, useLazyGetGlobalMemoriesQuery, useLazyGetGuidedPromptsQuery, useLazyGetIntegrationCredentialsQuery, useLazyGetIntegrationCredentialsSchemaQuery, useLazyGetIssuersQuery, useLazyGetLLMCredentialsQuery, useLazyGetLlmsQuery, useLazyGetMCPServerQuery, useLazyGetMCPServersQuery, useLazyGetMemoryCategoriesAdminQuery, useLazyGetMemsearchConfigQuery, useLazyGetMentorCategoriesQuery, useLazyGetMentorCategoryGroupsQuery, useLazyGetMentorDetailsQuery, useLazyGetMentorMemoriesQuery, useLazyGetMentorPublicSettingsQuery, useLazyGetMentorSettingsQuery, useLazyGetMentorSummariesQuery, useLazyGetMentorsQuery, useLazyGetModerationLogsQuery, useLazyGetNodeTypesQuery, useLazyGetNotificationContextQuery, useLazyGetNotificationsCountQuery, useLazyGetNotificationsQuery, useLazyGetOAuthServicesQuery, useLazyGetOverTimeActivityQuery, useLazyGetPathwayCompletionQuery, useLazyGetPathwayListQuery, useLazyGetPerLearnerActivityQuery, useLazyGetPerLearnerInfoQuery, useLazyGetPersonnalizedMentorsQuery, useLazyGetPersonnalizedSearchQuery, useLazyGetPinnedMessagesQuery, useLazyGetPlatformInfoQuery, useLazyGetPlatformMembershipQuery, useLazyGetProgramCompletionQuery, useLazyGetProgramListQuery, useLazyGetPromptCategoriesQuery, useLazyGetPromptsQuery, useLazyGetPromptsSearchQuery, useLazyGetProviderConfigQuery, useLazyGetPublicMentorsQuery, useLazyGetPublicPlatformImageAssetFileUrlQuery, useLazyGetRbacRolesQuery, useLazyGetRbacTeamsAccessListQuery, useLazyGetRecentMessageQuery, useLazyGetRecentlyAccessedMentorsQuery, useLazyGetRecommendationsAiSearchQuery, useLazyGetRecommendedPromptsListQuery, useLazyGetReportDetailQuery, useLazyGetReportedSkillsQuery, useLazyGetReportsQuery, useLazyGetResourceSearchQuery, useLazyGetSessionIdQuery, useLazyGetShareableLinkPublicQuery, useLazyGetShareableLinkQuery, useLazyGetSharedSessionIdQuery, useLazyGetSkillsPointsPercentileQuery, useLazyGetStripeContextQuery, useLazyGetStripePricingPageSessionQuery, useLazyGetTemplateDetailsQuery, useLazyGetTemplatesQuery, useLazyGetTenantMetadataQuery, useLazyGetToolsQuery, useLazyGetTrainingDocumentRetrainScheduleQuery, useLazyGetTrainingDocumentsQuery, useLazyGetUserAppsQuery, useLazyGetUserAssignedPathwaysQuery, useLazyGetUserCompaniesQuery, useLazyGetUserCredentialsQuery, useLazyGetUserDesiredSkillsQuery, useLazyGetUserEarnedSkillsQuery, useLazyGetUserEducationQuery, useLazyGetUserEnrolledPathwaysQuery, useLazyGetUserEnrolledProgramsQuery, useLazyGetUserExperienceQuery, useLazyGetUserInstitutionsQuery, useLazyGetUserInvitationsQuery, useLazyGetUserMemorySettingsQuery, useLazyGetUserMetadataEdxQuery, useLazyGetUserMetadataQuery, useLazyGetUserProjectDetailsQuery, useLazyGetUserProjectsQuery, useLazyGetUserReportedSkillsQuery, useLazyGetUserResumeQuery, useLazyGetUserSkillsPointsQuery, useLazyGetUserTenantsQuery, useLazyGetUsersAsAssertionsQuery, useLazyGetVectorDocumentsQuery, useLazyGetWorkflowQuery, useLazyGetWorkflowsQuery, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePatchWorkflowMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, usePublishWorkflowMutation, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSelfRetireMutation, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, useUnpublishWorkflowMutation, useUnstarMentorMutation, useUpdateAdminProjectMutation, useUpdateArtifactMutation, useUpdateAutoRechargeInfoMutation, useUpdateChatSessionMutation, useUpdateChatSessionSharedMutation, useUpdateCredentialMutation, useUpdateDisclaimerMutation, useUpdateExamAttemptMutation, useUpdateIntegrationCredentialMutation, useUpdateMCPServerMutation, useUpdateMemoryCategoryMutation, useUpdateMemsearchConfigMutation, useUpdateMentorMemoryMutation, useUpdateMessageFeedbackMutation, useUpdatePlatformImageAssetMutation, useUpdatePlatformInfoMutation, useUpdatePlatformMembershipMutation, useUpdatePlatformUserGroupMutation, useUpdatePlatformUserRoleWithPoliciesMutation, useUpdatePromptMutation, useUpdateRbacGroupMutation, useUpdateRbacMentorAccessMutation, useUpdateRbacPolicyMutation, useUpdateRbacRoleMutation, useUpdateRecommendedPromptMutation, useUpdateShareableLinkMutation, useUpdateTemplateMutation, useUpdateTenantMetadataMutation, useUpdateUserAccountMutation, useUpdateUserEducationMutation, useUpdateUserExperienceMutation, useUpdateUserMemorySettingsMutation, useUpdateUserMetadataEdxMutation, useUpdateUserMetadataMutation, useUpdateUserOnboardingStatusMutation, useUpdateUserProjectMutation, useUpdateUserRoleMutation, useUpdateUserStatusMutation, useUpdateUserTrialStatusMutation, useUpdateWorkflowMutation, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, useValidateWorkflowMutation, userApiSlice, userInvitationsApiSlice, workflowsApiSlice };
43549
43594
  //# sourceMappingURL=index.esm.js.map