@iblai/data-layer 1.1.7 → 1.1.9
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.d.ts +324 -11
- package/dist/index.esm.js +24 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/features/analytics/custom-api-slice.d.ts +311 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -109,9 +109,9 @@ declare const useGetApiKeysQuery: <R extends Record<string, any> = _reduxjs_tool
|
|
|
109
109
|
isError: false;
|
|
110
110
|
}, "error">>)>> & {
|
|
111
111
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
112
|
-
}>(arg: {
|
|
112
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
113
113
|
platformKey: string;
|
|
114
|
-
}
|
|
114
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
115
115
|
skip?: boolean;
|
|
116
116
|
refetchOnMountOrArgChange?: boolean | number;
|
|
117
117
|
} & {
|
|
@@ -849,13 +849,13 @@ declare const useGetChatHistoryFilterQuery: <R extends Record<string, any> = _re
|
|
|
849
849
|
isError: false;
|
|
850
850
|
}, "error">>)>> & {
|
|
851
851
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
852
|
-
}>(arg:
|
|
852
|
+
}>(arg: {
|
|
853
853
|
org: string;
|
|
854
854
|
endDate?: string;
|
|
855
855
|
mentorId?: string;
|
|
856
856
|
monthlyRange?: boolean;
|
|
857
857
|
startDate?: string;
|
|
858
|
-
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
858
|
+
} | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
859
859
|
skip?: boolean;
|
|
860
860
|
refetchOnMountOrArgChange?: boolean | number;
|
|
861
861
|
} & {
|
|
@@ -1292,7 +1292,7 @@ declare const useGetChatHistoryQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
1292
1292
|
isError: false;
|
|
1293
1293
|
}, "error">>)>> & {
|
|
1294
1294
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
1295
|
-
}>(arg:
|
|
1295
|
+
}>(arg: {
|
|
1296
1296
|
org: string;
|
|
1297
1297
|
endDate?: string;
|
|
1298
1298
|
filterUserId?: string;
|
|
@@ -1302,7 +1302,7 @@ declare const useGetChatHistoryQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
1302
1302
|
sentiment?: string;
|
|
1303
1303
|
startDate?: string;
|
|
1304
1304
|
topics?: string;
|
|
1305
|
-
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1305
|
+
} | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1306
1306
|
skip?: boolean;
|
|
1307
1307
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1308
1308
|
} & {
|
|
@@ -1951,11 +1951,11 @@ declare const useGetChatHistoryExportStatusQuery: <R extends Record<string, any>
|
|
|
1951
1951
|
isError: false;
|
|
1952
1952
|
}, "error">>)>> & {
|
|
1953
1953
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
1954
|
-
}>(arg:
|
|
1954
|
+
}>(arg: {
|
|
1955
1955
|
key: string;
|
|
1956
1956
|
reportName: string;
|
|
1957
1957
|
mentorUniqueId?: string;
|
|
1958
|
-
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1958
|
+
} | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
1959
1959
|
skip?: boolean;
|
|
1960
1960
|
refetchOnMountOrArgChange?: boolean | number;
|
|
1961
1961
|
} & {
|
|
@@ -45886,6 +45886,319 @@ declare const useGetContentAnalyticsDetailsQuery: <R extends Record<string, any>
|
|
|
45886
45886
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<ContentAnalyticsDetailsArgs, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", ContentAnalyticsDetailsResponse, "analyticsApiSlice", unknown>>;
|
|
45887
45887
|
};
|
|
45888
45888
|
|
|
45889
|
+
declare const analyticsCustomSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, {
|
|
45890
|
+
getDownloadReportFromURL: _reduxjs_toolkit_query.QueryDefinition<{
|
|
45891
|
+
url: string;
|
|
45892
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>;
|
|
45893
|
+
}, "analyticsCustomApiSlice", "Analytics", typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
|
|
45894
|
+
declare const useGetDownloadReportFromURLQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
45895
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
45896
|
+
originalArgs?: undefined | undefined;
|
|
45897
|
+
data?: undefined | undefined;
|
|
45898
|
+
error?: undefined | undefined;
|
|
45899
|
+
requestId?: undefined | undefined;
|
|
45900
|
+
endpointName?: string | undefined;
|
|
45901
|
+
startedTimeStamp?: undefined | undefined;
|
|
45902
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
45903
|
+
} & {
|
|
45904
|
+
currentData?: Blob | undefined;
|
|
45905
|
+
isUninitialized: false;
|
|
45906
|
+
isLoading: false;
|
|
45907
|
+
isFetching: false;
|
|
45908
|
+
isSuccess: false;
|
|
45909
|
+
isError: false;
|
|
45910
|
+
}, "isUninitialized"> & {
|
|
45911
|
+
isUninitialized: true;
|
|
45912
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
45913
|
+
url: string;
|
|
45914
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
45915
|
+
currentData?: Blob | undefined;
|
|
45916
|
+
isUninitialized: false;
|
|
45917
|
+
isLoading: false;
|
|
45918
|
+
isFetching: false;
|
|
45919
|
+
isSuccess: false;
|
|
45920
|
+
isError: false;
|
|
45921
|
+
}, {
|
|
45922
|
+
isLoading: true;
|
|
45923
|
+
isFetching: boolean;
|
|
45924
|
+
data: undefined;
|
|
45925
|
+
} | ({
|
|
45926
|
+
isSuccess: true;
|
|
45927
|
+
isFetching: true;
|
|
45928
|
+
error: undefined;
|
|
45929
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
45930
|
+
url: string;
|
|
45931
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
45932
|
+
currentData?: Blob | undefined;
|
|
45933
|
+
isUninitialized: false;
|
|
45934
|
+
isLoading: false;
|
|
45935
|
+
isFetching: false;
|
|
45936
|
+
isSuccess: false;
|
|
45937
|
+
isError: false;
|
|
45938
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
45939
|
+
isSuccess: true;
|
|
45940
|
+
isFetching: false;
|
|
45941
|
+
error: undefined;
|
|
45942
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
45943
|
+
url: string;
|
|
45944
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
45945
|
+
currentData?: Blob | undefined;
|
|
45946
|
+
isUninitialized: false;
|
|
45947
|
+
isLoading: false;
|
|
45948
|
+
isFetching: false;
|
|
45949
|
+
isSuccess: false;
|
|
45950
|
+
isError: false;
|
|
45951
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
45952
|
+
isError: true;
|
|
45953
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
45954
|
+
url: string;
|
|
45955
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
45956
|
+
currentData?: Blob | undefined;
|
|
45957
|
+
isUninitialized: false;
|
|
45958
|
+
isLoading: false;
|
|
45959
|
+
isFetching: false;
|
|
45960
|
+
isSuccess: false;
|
|
45961
|
+
isError: false;
|
|
45962
|
+
}, "error">>)>> & {
|
|
45963
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
45964
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
45965
|
+
url: string;
|
|
45966
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
45967
|
+
skip?: boolean;
|
|
45968
|
+
refetchOnMountOrArgChange?: boolean | number;
|
|
45969
|
+
} & {
|
|
45970
|
+
skip?: boolean;
|
|
45971
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
45972
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
45973
|
+
originalArgs?: undefined | undefined;
|
|
45974
|
+
data?: undefined | undefined;
|
|
45975
|
+
error?: undefined | undefined;
|
|
45976
|
+
requestId?: undefined | undefined;
|
|
45977
|
+
endpointName?: string | undefined;
|
|
45978
|
+
startedTimeStamp?: undefined | undefined;
|
|
45979
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
45980
|
+
} & {
|
|
45981
|
+
currentData?: Blob | undefined;
|
|
45982
|
+
isUninitialized: false;
|
|
45983
|
+
isLoading: false;
|
|
45984
|
+
isFetching: false;
|
|
45985
|
+
isSuccess: false;
|
|
45986
|
+
isError: false;
|
|
45987
|
+
}, "isUninitialized"> & {
|
|
45988
|
+
isUninitialized: true;
|
|
45989
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
45990
|
+
url: string;
|
|
45991
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
45992
|
+
currentData?: Blob | undefined;
|
|
45993
|
+
isUninitialized: false;
|
|
45994
|
+
isLoading: false;
|
|
45995
|
+
isFetching: false;
|
|
45996
|
+
isSuccess: false;
|
|
45997
|
+
isError: false;
|
|
45998
|
+
}, {
|
|
45999
|
+
isLoading: true;
|
|
46000
|
+
isFetching: boolean;
|
|
46001
|
+
data: undefined;
|
|
46002
|
+
} | ({
|
|
46003
|
+
isSuccess: true;
|
|
46004
|
+
isFetching: true;
|
|
46005
|
+
error: undefined;
|
|
46006
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46007
|
+
url: string;
|
|
46008
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46009
|
+
currentData?: Blob | undefined;
|
|
46010
|
+
isUninitialized: false;
|
|
46011
|
+
isLoading: false;
|
|
46012
|
+
isFetching: false;
|
|
46013
|
+
isSuccess: false;
|
|
46014
|
+
isError: false;
|
|
46015
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
46016
|
+
isSuccess: true;
|
|
46017
|
+
isFetching: false;
|
|
46018
|
+
error: undefined;
|
|
46019
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46020
|
+
url: string;
|
|
46021
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46022
|
+
currentData?: Blob | undefined;
|
|
46023
|
+
isUninitialized: false;
|
|
46024
|
+
isLoading: false;
|
|
46025
|
+
isFetching: false;
|
|
46026
|
+
isSuccess: false;
|
|
46027
|
+
isError: false;
|
|
46028
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
46029
|
+
isError: true;
|
|
46030
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46031
|
+
url: string;
|
|
46032
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46033
|
+
currentData?: Blob | undefined;
|
|
46034
|
+
isUninitialized: false;
|
|
46035
|
+
isLoading: false;
|
|
46036
|
+
isFetching: false;
|
|
46037
|
+
isSuccess: false;
|
|
46038
|
+
isError: false;
|
|
46039
|
+
}, "error">>)>> & {
|
|
46040
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
46041
|
+
}) => R) | undefined;
|
|
46042
|
+
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
46043
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46044
|
+
url: string;
|
|
46045
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>>;
|
|
46046
|
+
};
|
|
46047
|
+
declare const useLazyGetDownloadReportFromURLQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
46048
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
46049
|
+
originalArgs?: undefined | undefined;
|
|
46050
|
+
data?: undefined | undefined;
|
|
46051
|
+
error?: undefined | undefined;
|
|
46052
|
+
requestId?: undefined | undefined;
|
|
46053
|
+
endpointName?: string | undefined;
|
|
46054
|
+
startedTimeStamp?: undefined | undefined;
|
|
46055
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
46056
|
+
} & {
|
|
46057
|
+
currentData?: Blob | undefined;
|
|
46058
|
+
isUninitialized: false;
|
|
46059
|
+
isLoading: false;
|
|
46060
|
+
isFetching: false;
|
|
46061
|
+
isSuccess: false;
|
|
46062
|
+
isError: false;
|
|
46063
|
+
}, "isUninitialized"> & {
|
|
46064
|
+
isUninitialized: true;
|
|
46065
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46066
|
+
url: string;
|
|
46067
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46068
|
+
currentData?: Blob | undefined;
|
|
46069
|
+
isUninitialized: false;
|
|
46070
|
+
isLoading: false;
|
|
46071
|
+
isFetching: false;
|
|
46072
|
+
isSuccess: false;
|
|
46073
|
+
isError: false;
|
|
46074
|
+
}, {
|
|
46075
|
+
isLoading: true;
|
|
46076
|
+
isFetching: boolean;
|
|
46077
|
+
data: undefined;
|
|
46078
|
+
} | ({
|
|
46079
|
+
isSuccess: true;
|
|
46080
|
+
isFetching: true;
|
|
46081
|
+
error: undefined;
|
|
46082
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46083
|
+
url: string;
|
|
46084
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46085
|
+
currentData?: Blob | undefined;
|
|
46086
|
+
isUninitialized: false;
|
|
46087
|
+
isLoading: false;
|
|
46088
|
+
isFetching: false;
|
|
46089
|
+
isSuccess: false;
|
|
46090
|
+
isError: false;
|
|
46091
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
46092
|
+
isSuccess: true;
|
|
46093
|
+
isFetching: false;
|
|
46094
|
+
error: undefined;
|
|
46095
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46096
|
+
url: string;
|
|
46097
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46098
|
+
currentData?: Blob | undefined;
|
|
46099
|
+
isUninitialized: false;
|
|
46100
|
+
isLoading: false;
|
|
46101
|
+
isFetching: false;
|
|
46102
|
+
isSuccess: false;
|
|
46103
|
+
isError: false;
|
|
46104
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
46105
|
+
isError: true;
|
|
46106
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46107
|
+
url: string;
|
|
46108
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46109
|
+
currentData?: Blob | undefined;
|
|
46110
|
+
isUninitialized: false;
|
|
46111
|
+
isLoading: false;
|
|
46112
|
+
isFetching: false;
|
|
46113
|
+
isSuccess: false;
|
|
46114
|
+
isError: false;
|
|
46115
|
+
}, "error">>)>> & {
|
|
46116
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
46117
|
+
}>(options?: (_reduxjs_toolkit_query.SubscriptionOptions & Omit<{
|
|
46118
|
+
skip?: boolean;
|
|
46119
|
+
selectFromResult?: ((state: _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
46120
|
+
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
46121
|
+
originalArgs?: undefined | undefined;
|
|
46122
|
+
data?: undefined | undefined;
|
|
46123
|
+
error?: undefined | undefined;
|
|
46124
|
+
requestId?: undefined | undefined;
|
|
46125
|
+
endpointName?: string | undefined;
|
|
46126
|
+
startedTimeStamp?: undefined | undefined;
|
|
46127
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
46128
|
+
} & {
|
|
46129
|
+
currentData?: Blob | undefined;
|
|
46130
|
+
isUninitialized: false;
|
|
46131
|
+
isLoading: false;
|
|
46132
|
+
isFetching: false;
|
|
46133
|
+
isSuccess: false;
|
|
46134
|
+
isError: false;
|
|
46135
|
+
}, "isUninitialized"> & {
|
|
46136
|
+
isUninitialized: true;
|
|
46137
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46138
|
+
url: string;
|
|
46139
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46140
|
+
currentData?: Blob | undefined;
|
|
46141
|
+
isUninitialized: false;
|
|
46142
|
+
isLoading: false;
|
|
46143
|
+
isFetching: false;
|
|
46144
|
+
isSuccess: false;
|
|
46145
|
+
isError: false;
|
|
46146
|
+
}, {
|
|
46147
|
+
isLoading: true;
|
|
46148
|
+
isFetching: boolean;
|
|
46149
|
+
data: undefined;
|
|
46150
|
+
} | ({
|
|
46151
|
+
isSuccess: true;
|
|
46152
|
+
isFetching: true;
|
|
46153
|
+
error: undefined;
|
|
46154
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46155
|
+
url: string;
|
|
46156
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46157
|
+
currentData?: Blob | undefined;
|
|
46158
|
+
isUninitialized: false;
|
|
46159
|
+
isLoading: false;
|
|
46160
|
+
isFetching: false;
|
|
46161
|
+
isSuccess: false;
|
|
46162
|
+
isError: false;
|
|
46163
|
+
}, "data" | "fulfilledTimeStamp">>) | ({
|
|
46164
|
+
isSuccess: true;
|
|
46165
|
+
isFetching: false;
|
|
46166
|
+
error: undefined;
|
|
46167
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46168
|
+
url: string;
|
|
46169
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46170
|
+
currentData?: Blob | undefined;
|
|
46171
|
+
isUninitialized: false;
|
|
46172
|
+
isLoading: false;
|
|
46173
|
+
isFetching: false;
|
|
46174
|
+
isSuccess: false;
|
|
46175
|
+
isError: false;
|
|
46176
|
+
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
46177
|
+
isError: true;
|
|
46178
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46179
|
+
url: string;
|
|
46180
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>> & {
|
|
46181
|
+
currentData?: Blob | undefined;
|
|
46182
|
+
isUninitialized: false;
|
|
46183
|
+
isLoading: false;
|
|
46184
|
+
isFetching: false;
|
|
46185
|
+
isSuccess: false;
|
|
46186
|
+
isError: false;
|
|
46187
|
+
}, "error">>)>> & {
|
|
46188
|
+
status: _reduxjs_toolkit_query.QueryStatus;
|
|
46189
|
+
}) => R) | undefined;
|
|
46190
|
+
}, "skip">) | undefined) => [(arg: {
|
|
46191
|
+
url: string;
|
|
46192
|
+
}, preferCacheValue?: boolean) => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
46193
|
+
url: string;
|
|
46194
|
+
}, _reduxjs_toolkit_query.BaseQueryFn<CustomQueryArgs, unknown, ExtendedFetchBaseQueryError, Record<string, unknown>, _reduxjs_toolkit_query.FetchBaseQueryMeta>, "Analytics", Blob, "analyticsCustomApiSlice", unknown>>, [R][R extends any ? 0 : never] & {
|
|
46195
|
+
reset: () => void;
|
|
46196
|
+
}, {
|
|
46197
|
+
lastArg: {
|
|
46198
|
+
url: string;
|
|
46199
|
+
};
|
|
46200
|
+
}];
|
|
46201
|
+
|
|
45889
46202
|
declare const reportsApiSlice: _reduxjs_toolkit_query.Api<_reduxjs_toolkit_query.BaseQueryFn<void, unknown, unknown, {
|
|
45890
46203
|
attempt?: number;
|
|
45891
46204
|
} & _reduxjs_toolkit_query.RetryOptions, {}>, {
|
|
@@ -46337,11 +46650,11 @@ declare const useGetReportDetailQuery: <R extends Record<string, any> = _reduxjs
|
|
|
46337
46650
|
isError: false;
|
|
46338
46651
|
}, "error">>)>> & {
|
|
46339
46652
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
46340
|
-
}>(arg:
|
|
46653
|
+
}>(arg: {
|
|
46341
46654
|
key: string;
|
|
46342
46655
|
reportName: string;
|
|
46343
46656
|
mentorUniqueId?: string;
|
|
46344
|
-
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
46657
|
+
} | typeof _reduxjs_toolkit_query.skipToken, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
46345
46658
|
skip?: boolean;
|
|
46346
46659
|
refetchOnMountOrArgChange?: boolean | number;
|
|
46347
46660
|
} & {
|
|
@@ -85071,5 +85384,5 @@ declare const skillsMiddleware: any[];
|
|
|
85071
85384
|
|
|
85072
85385
|
declare const initializeDataLayer: (dmUrl: string, lmsUrl: string, storageService: StorageService$1, httpErrorHandler?: Record<number, () => void>) => void;
|
|
85073
85386
|
|
|
85074
|
-
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, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, analyticsApiSlice, 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, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, 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, 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, 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, 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, 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, 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, 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, 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, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, 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, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
|
|
85387
|
+
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, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, 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, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, 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, 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, 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, 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, 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, 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, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, 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, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
|
|
85075
85388
|
export type { AccessTimeHeatmapArgs, AccessTimeHeatmapResponse, ActiveAttempt, AggregationType, AgreeToDisclaimerArgs, AgreeToDisclaimerRequest, AnalyticsBaseParams, AnalyticsDateParams, AnalyticsPaginationParams, AppleTokenRequest, AverageMessagesPerSessionResponse, ConnectedService, ConnectedServicesParams, ContentAnalyticsArgs, ContentAnalyticsAverages, ContentAnalyticsContentInfo, ContentAnalyticsDetailsArgs, ContentAnalyticsDetailsResponse, ContentAnalyticsDetailsSummary, ContentAnalyticsItem, ContentAnalyticsLearner, ContentAnalyticsPagination, ContentAnalyticsResponse, ContentAnalyticsSummary, ContentAnalyticsTotals, ConversationMemoryEntry, ConversationMemoryResponse, ConversationSummaryResponse, CourseEdxData, CreateCustomDomainPayload, CreateCustomDomainRequest, CreateDisclaimerArgs, CreateDisclaimerRequest, CreateMCPServerArgs, CreateMCPServerConnectionParams, CreateMemoryArgs, CreateMemoryRequest, CreateProjectArgs, CreateProjectData, CreateRecommendedPromptArgs, CredentialsResponse, CredentialsSchema, CustomDomain, CustomDomainImage, CustomDomainListResponse, CustomDomainResponse, CustomRbacGroupDetailsResponse, CustomRbacMentorAccessList, CustomRbacMentorAccessListPolicy, CustomRbacPolicyDetailsResponse, CustomRbacRoleDetailsResponse, DateFilter, DeleteDisclaimerArgs, DeleteMemoryArgs, DeleteMemoryByCategoryArgs, DeleteProjectArgs, DeleteRecommendedPromptArgs, DetailedFinancialStatsArgs, DetailedFinancialStatsMetric, DetailedFinancialStatsResponse, Disclaimer, DisclaimerAgreement, DisclaimersFetchResponse, DisconnectServiceParams, EditMentorJsonArgs, Exam, ExamAttemptArgs, ExamAttemptResponse, ExamInfo, ExamInfoQueryParams, ExamStartArgs, ExamStartResponse, FileUploadURLRequest, FileUploadURLResponse, FinancialStatsArgs, FinancialStatsFilters, FinancialStatsPeriodInfo, FinancialStatsResponse, GetAiSearchMentorsArgs, GetConversationMemoriesArgs, GetCustomDomainsArgs, GetDisclaimersArgs, GetDisclaimersParams, GetFilteredMemoriesArgs, GetFilteredMemoriesParams, GetMCPServerConnectionsParams, GetMCPServersParams, GetMemoriesArgs, GetMemoriesParams, GetMemoryCategoriesArgs, GetMemoryFiltersArgs, GetMentorSummariesArgs, GetMentorUserSettingsArgs, GetMentorsArgs, GetMentorsParams, GetProjectDetailsArgs, GetProjectsArgs, GetProjectsParams, GetRecommendationsAiSearchArgs, GetRecommendationsAiSearchResponse, GetRecommendedPromptsListArgs, GetUserMetadataArgs, Instructor, InstructorInfo, InviteUserRequest, InviteUserResponse, InvitedUserRequest, InvitedUserResponse, IssuersResponse, JwtTokenResponse, LLMServiceInfo, MCPBaseParams, MCPServer, MCPServerConnection, MCPServerObjectPermissions, MCPServerParams, MCPServerPermissions, MCPServerRequestBody, MaskLLM, MemoriesFetchResponse, Memory, MemoryCategoriesResponse, MemoryEntry, MemoryFiltersResponse, Mentor$1 as Mentor, MentorSummariesResponse, MentorUserSettings, MentorsFetchResponse, MfeContextResponse, NotificationChannelDetail, NotificationSpaDetail, NotificationTemplate, NotificationTemplateDetail, NotificationTemplatePeriodicConfig, NotificationTemplatePeriodicMentor, NotificationTemplatePeriodicSettings, OAuthFindParams, OAuthFindResponse, OAuthServiceData, OAuthServiceParams, OutlineNode, OverviewSummaryResponse, PaginatedMCPServerConnectionList, PaginatedMCPServerList, PartialUpdateMCPServerArgs, PatchMCPServerConnectionParams, PlatformConfigurationItem, PlatformConfigurationListResponse, PlatformConfigurationSetArgs, PlatformImageAsset, PlatformImageAssetPostRequest, PlatformImageAssetUpdateRequest, PlatformMembershipConfigPostRequest, PlatformMembershipConfigResponse, PlatformUserDetails, PlatformUserGroupDetailsResponse, PlatformUserGroupUser, PlatformUserPolicyUpdateRequest, PlatformUserWithPolicies, PlatformUsersListResponse, PlatformUsersListWithPoliciesResponse, ProfileImage, Project, ProjectsFetchResponse, Provider, RbacPolicyDetailsRequest, RbacPolicyDetailsResponse, RecommendationItem, RecommendationSystemUserContext, RecommendedPromptDetailResponse, RemoveProfileImageResponse, SessionStatsArgs, SessionStatsResponse, StartOAuthFlowParams, StartOAuthFlowResponse, StorageService, StripeCheckoutSessionArgs, StripeContextResponse, TimeTrackingRequest, TimeTrackingResponse, TokenResponse, TopStudentsResponse, TopicOverviewResponse, TopicStatisticsResponse, TopicsDetailsStatsArgs, TopicsDetailsStatsResponse, TopicsStatsArgs, TopicsStatsResponse, TopicsSummaryResponse, TranscriptsConversationHeadlineArgs, TranscriptsConversationHeadlineResponse, TranscriptsMessagesArgs, TranscriptsMessagesDetailsArgs, TranscriptsMessagesDetailsResponse, TranscriptsMessagesResponse, UpdateDisclaimerArgs, UpdateDisclaimerRequest, UpdateMCPServerArgs, UpdateMemoryEntryArgs, UpdateMentorUserSettingsArgs, UpdateProjectArgs, UpdateProjectData, UpdateRecommendedPromptArgs, UpdateUserAccountRequest, UpdateUserRoleRequest, UploadProfileImageResponse, UserCohortsOverTimeResponse, UserDetailsStatsArgs, UserDetailsStatsResponse, UserMetricsPieChartResponse, UserMetricsResponse, UserProfile, UsersStatsArgs, UsersStatsResponse };
|
package/dist/index.esm.js
CHANGED
|
@@ -41304,6 +41304,25 @@ const analyticsApiSlice = createApi({
|
|
|
41304
41304
|
});
|
|
41305
41305
|
const { useGetOverviewSummaryQuery, useGetConversationQuery, useGetMostDiscussedTopicsQuery, useGetAverageMessagesPerSessionQuery, useGetRegisteredUsersTrendQuery, useGetUserMetricsQuery, useGetUserMetricsPieChartQuery, useGetUserCohortsOverTimeQuery, useGetTopStudentsByChatMessagesQuery, useGetTopicOverviewQuery, useGetTopicsSummaryQuery, useGetTopicStatisticsQuery, useGetTopicsStatsQuery, useGetUsersStatsQuery, useGetSessionStatsQuery, useGetTopicsDetailsStatsQuery, useGetAccessTimeHeatmapQuery, useGetUserDetailsStatsQuery, useGetAverageRatingQuery, useGetFinancialStatsQuery, useGetDetailedFinancialStatsQuery, useGetTranscriptsMessagesQuery, useGetTranscriptsMessagesDetailsQuery, useTimeTrackingMutation, useGetTranscriptsConversationHeadlineQuery, useGetContentAnalyticsQuery, useGetContentAnalyticsDetailsQuery, } = analyticsApiSlice;
|
|
41306
41306
|
|
|
41307
|
+
const analyticsCustomSlice = createApi({
|
|
41308
|
+
reducerPath: 'analyticsCustomApiSlice',
|
|
41309
|
+
baseQuery: iblFetchBaseQuery,
|
|
41310
|
+
tagTypes: ['Analytics'],
|
|
41311
|
+
endpoints: (builder) => ({
|
|
41312
|
+
getDownloadReportFromURL: builder.query({
|
|
41313
|
+
query: ({ url }) => ({
|
|
41314
|
+
url: url,
|
|
41315
|
+
service: SERVICES.DM,
|
|
41316
|
+
method: 'GET',
|
|
41317
|
+
responseHandler: (response) => response.blob(),
|
|
41318
|
+
}),
|
|
41319
|
+
// Blobs are non-serializable; disable caching to prevent Redux serialization warnings
|
|
41320
|
+
keepUnusedDataFor: 0,
|
|
41321
|
+
}),
|
|
41322
|
+
}),
|
|
41323
|
+
});
|
|
41324
|
+
const { useGetDownloadReportFromURLQuery, useLazyGetDownloadReportFromURLQuery } = analyticsCustomSlice;
|
|
41325
|
+
|
|
41307
41326
|
const reportsApiSlice = createApi({
|
|
41308
41327
|
reducerPath: 'reportsApiSlice',
|
|
41309
41328
|
baseQuery: iblFakeBaseQuery,
|
|
@@ -43186,6 +43205,7 @@ const mentorReducer = {
|
|
|
43186
43205
|
[artifactsApiSlice.reducerPath]: artifactsApiSlice.reducer,
|
|
43187
43206
|
[coreFakeCustomPublicImageAssetApiSlice.reducerPath]: coreFakeCustomPublicImageAssetApiSlice.reducer,
|
|
43188
43207
|
[billingCustomSlice.reducerPath]: billingCustomSlice.reducer,
|
|
43208
|
+
[analyticsCustomSlice.reducerPath]: analyticsCustomSlice.reducer,
|
|
43189
43209
|
};
|
|
43190
43210
|
const mentorMiddleware = [
|
|
43191
43211
|
mentorApiSlice.middleware,
|
|
@@ -43229,6 +43249,7 @@ const mentorMiddleware = [
|
|
|
43229
43249
|
artifactsApiSlice.middleware,
|
|
43230
43250
|
coreFakeCustomPublicImageAssetApiSlice.middleware,
|
|
43231
43251
|
billingCustomSlice.middleware,
|
|
43252
|
+
analyticsCustomSlice.middleware,
|
|
43232
43253
|
];
|
|
43233
43254
|
|
|
43234
43255
|
const skillsReducer = {
|
|
@@ -43262,6 +43283,7 @@ const skillsReducer = {
|
|
|
43262
43283
|
[artifactsApiSlice.reducerPath]: artifactsApiSlice.reducer,
|
|
43263
43284
|
[coreFakeCustomPublicImageAssetApiSlice.reducerPath]: coreFakeCustomPublicImageAssetApiSlice.reducer,
|
|
43264
43285
|
[billingCustomSlice.reducerPath]: billingCustomSlice.reducer,
|
|
43286
|
+
[analyticsCustomSlice.reducerPath]: analyticsCustomSlice.reducer,
|
|
43265
43287
|
};
|
|
43266
43288
|
const skillsMiddleware = [
|
|
43267
43289
|
perLearnerApiSlice.middleware,
|
|
@@ -43294,6 +43316,7 @@ const skillsMiddleware = [
|
|
|
43294
43316
|
artifactsApiSlice.middleware,
|
|
43295
43317
|
coreFakeCustomPublicImageAssetApiSlice.middleware,
|
|
43296
43318
|
billingCustomSlice.middleware,
|
|
43319
|
+
analyticsCustomSlice.middleware,
|
|
43297
43320
|
];
|
|
43298
43321
|
|
|
43299
43322
|
const initializeDataLayer = (dmUrl, lmsUrl, storageService, httpErrorHandler = {}) => {
|
|
@@ -43303,5 +43326,5 @@ const initializeDataLayer = (dmUrl, lmsUrl, storageService, httpErrorHandler = {
|
|
|
43303
43326
|
Config.httpErrorHandlers = httpErrorHandler;
|
|
43304
43327
|
};
|
|
43305
43328
|
|
|
43306
|
-
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, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, analyticsApiSlice, 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, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, 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, 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, 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, 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, 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, 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, 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, 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, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, 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, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
|
|
43329
|
+
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, SERVICES, STORAGE_KEYS, TENANT_IDENTIFIERS, TENANT_LOGO_ENDPOINTS, TENANT_LOGO_QUERY_KEYS, TENANT_LOGO_REDUCER_PATH, URL_PATTERNS, 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, searchApiSlice, sessionApiSlice, skillsApiSlice, skillsMiddleware, skillsReducer, stripeApiSlice, tenantApiReducer, tenantApiSlice, tenantLogoApiSlice, toolsApiSlice, trainingDocumentsApiSlice, useAddPinnedMessageMutation, useAddTrainingDocumentMutation, useAgreeToDisclaimerMutation, useAudioToTextMutation, 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, 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, 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, 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, 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, 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, useLazyListArtifactVersionsQuery, useLazyListArtifactsQuery, useLazyPlatformUserGroupsQuery, useLazyPlatformUsersQuery, useLazyRefreshJwtTokenQuery, useLazySeedMentorsQuery, useLazyStarredMentorsQuery, useLazyStartOAuthFlowQuery, useListArtifactVersionsQuery, useListArtifactsQuery, useMarkAllAsReadMutation, useOauthFindMutation, usePartialUpdateMCPServerMutation, usePartialUpdateRbacRoleMutation, usePatchMCPServerConnectionMutation, usePlatformInvitationsQuery, usePlatformUserGroupsQuery, usePlatformUsersQuery, useRemoveProfileImageMutation, useRenewSubscriptionMutation, useResetPasswordMutation, useRevokeShareableLinkMutation, useSeedMentorsQuery, useSendNotificationMutation, useSetCurrentVersionMutation, useSetPlatformConfigurationsMutation, useSetStudentMentorCreationStatusMutation, useStarMentorMutation, useStarredMentorsQuery, useStartExamMutation, useTimeTrackingMutation, useToggleTemplateMutation, useTriggerAutoRechargeMutation, useUnPinMessageMutation, 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, useUploadCredentialImageMutation, useUploadDarkLogoMutation, useUploadLightLogoMutation, useUploadProfileImageMutation, useUsersGradesPassedQuery, userApiSlice, userInvitationsApiSlice };
|
|
43307
43330
|
//# sourceMappingURL=index.esm.js.map
|