@gen3/core 0.10.47 → 0.10.48
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/cjs/index.js +185 -33
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/aiSearch/aiSearchSlice.d.ts +430 -6
- package/dist/dts/features/app/store.d.ts +3 -1
- package/dist/dts/features/authz/authzMappingSlice.d.ts +331 -61
- package/dist/dts/features/cohort/cohortSlice.d.ts +6 -6
- package/dist/dts/features/download/downloadStatusApi.d.ts +269 -5
- package/dist/dts/features/fence/credentialsApi.d.ts +619 -7
- package/dist/dts/features/fence/fenceApi.d.ts +136 -4
- package/dist/dts/features/fence/jwtApi.d.ts +136 -4
- package/dist/dts/features/gen3/gen3Api.d.ts +1 -1
- package/dist/dts/features/gen3Apps/Gen3App.d.ts +10 -9
- package/dist/dts/features/gen3Apps/Gen3AppRTKQ.d.ts +19 -0
- package/dist/dts/features/gen3Apps/constants.d.ts +1 -0
- package/dist/dts/features/gen3Apps/gen3AppsSlice.d.ts +2 -2
- package/dist/dts/features/gen3Apps/index.d.ts +4 -3
- package/dist/dts/features/graphQL/graphQLSlice.d.ts +137 -5
- package/dist/dts/features/guppy/guppyApi.d.ts +2 -2
- package/dist/dts/features/guppy/guppyDownloadSlice.d.ts +164 -4
- package/dist/dts/features/guppy/guppySlice.d.ts +2012 -15
- package/dist/dts/features/metadata/metadataSlice.d.ts +930 -9
- package/dist/dts/features/submission/submissionApi.d.ts +919 -1
- package/dist/dts/features/user/externalLoginsSlice.d.ts +527 -5
- package/dist/dts/features/user/hooks.d.ts +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +1386 -189
- package/dist/dts/features/workspace/workspacesSlice.d.ts +402 -6
- package/dist/dts/hooks.d.ts +5 -5
- package/dist/dts/reducers.d.ts +25 -5
- package/dist/dts/store.d.ts +25 -34
- package/dist/esm/index.js +166 -35
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +8767 -911
- package/package.json +2 -2
- package/dist/dts/features/dataLibrary/types.d.ts +0 -4
package/dist/esm/index.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import { createSelector, createAsyncThunk, createSlice, combineReducers, configureStore } from '@reduxjs/toolkit';
|
|
2
|
-
import { buildCreateApi, coreModule, reactHooksModule } from '@reduxjs/toolkit/query/react';
|
|
3
|
-
import
|
|
2
|
+
import { buildCreateApi, coreModule, reactHooksModule, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import React__default, { useRef, useEffect } from 'react';
|
|
4
5
|
import { createSelectorHook, createDispatchHook, createStoreHook, Provider } from 'react-redux';
|
|
5
|
-
import { fetchBaseQuery } from '@reduxjs/toolkit/dist/query/react';
|
|
6
6
|
import { getCookie } from 'cookies-next';
|
|
7
7
|
import { QueryStatus, setupListeners } from '@reduxjs/toolkit/query';
|
|
8
8
|
import { isEqual } from 'lodash';
|
|
9
9
|
import Queue from 'queue';
|
|
10
10
|
import { JSONPath } from 'jsonpath-plus';
|
|
11
11
|
import { v5 } from 'uuid';
|
|
12
|
-
import 'redux-persist';
|
|
12
|
+
import { FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER } from 'redux-persist';
|
|
13
13
|
import { CookiesProvider } from 'react-cookie';
|
|
14
14
|
import useSWR from 'swr';
|
|
15
15
|
import { flatten } from 'flat';
|
|
@@ -51,7 +51,7 @@ const FILE_DELIMITERS = {
|
|
|
51
51
|
* Note: Should the action type be AnyAction (from redux) or PayloadAction (from redux-toolkit)?
|
|
52
52
|
* If we are creating all of our actions through RTK, then PayloadAction might be the
|
|
53
53
|
* correct opinionated type.
|
|
54
|
-
*/ const CoreContext =
|
|
54
|
+
*/ const CoreContext = React__default.createContext(undefined);
|
|
55
55
|
const useCoreSelector = createSelectorHook(CoreContext);
|
|
56
56
|
const useCoreDispatch = createDispatchHook(CoreContext);
|
|
57
57
|
const useCoreStore = createStoreHook(CoreContext);
|
|
@@ -61,9 +61,11 @@ const useCoreStore = createStoreHook(CoreContext);
|
|
|
61
61
|
* See: https://redux-toolkit.js.org/rtk-query/usage/customizing-create-api
|
|
62
62
|
* @returns: created core API.
|
|
63
63
|
*/ const coreCreateApi = buildCreateApi(coreModule(), reactHooksModule({
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
hooks: {
|
|
65
|
+
useSelector: useCoreSelector,
|
|
66
|
+
useStore: useCoreStore,
|
|
67
|
+
useDispatch: useCoreDispatch
|
|
68
|
+
}
|
|
67
69
|
}));
|
|
68
70
|
|
|
69
71
|
/**
|
|
@@ -590,8 +592,8 @@ const slice$2 = createSlice({
|
|
|
590
592
|
initialState: initialState$2,
|
|
591
593
|
reducers: {
|
|
592
594
|
addGen3AppMetadata: (state, action)=>{
|
|
593
|
-
const {
|
|
594
|
-
state.gen3Apps[
|
|
595
|
+
const { name, requiredEntityTypes } = action.payload;
|
|
596
|
+
state.gen3Apps[name] = {
|
|
595
597
|
...action.payload,
|
|
596
598
|
// need to turn a ReadonlyArray into a mutable array for immer's WritableDraft
|
|
597
599
|
requiredEntityTypes: [
|
|
@@ -603,8 +605,8 @@ const slice$2 = createSlice({
|
|
|
603
605
|
});
|
|
604
606
|
const gen3AppReducer = slice$2.reducer;
|
|
605
607
|
const { addGen3AppMetadata } = slice$2.actions;
|
|
606
|
-
const
|
|
607
|
-
const
|
|
608
|
+
const selectGen3AppMetadataByName = (state, appName)=>state.gen3Apps.gen3Apps[appName];
|
|
609
|
+
const selectGen3AppByName = (appName)=>lookupGen3App(appName); // TODO: memoize this selector
|
|
608
610
|
|
|
609
611
|
const initialState$1 = {};
|
|
610
612
|
// TODO: document what this does
|
|
@@ -731,8 +733,7 @@ const cohortsAdapter = createEntityAdapter<Cohort>({
|
|
|
731
733
|
}
|
|
732
734
|
};
|
|
733
735
|
}
|
|
734
|
-
}
|
|
735
|
-
extraReducers: {}
|
|
736
|
+
}
|
|
736
737
|
});
|
|
737
738
|
// Filter actions: addFilter, removeFilter, updateFilter
|
|
738
739
|
const { updateCohortFilter, removeCohortFilter, clearCohortFilters } = cohortSlice.actions;
|
|
@@ -830,7 +831,7 @@ const coreStore = configureStore({
|
|
|
830
831
|
setupListeners(coreStore.dispatch);
|
|
831
832
|
|
|
832
833
|
const CoreProvider = ({ children })=>{
|
|
833
|
-
return /*#__PURE__*/
|
|
834
|
+
return /*#__PURE__*/ React__default.createElement(Provider, {
|
|
834
835
|
store: coreStore,
|
|
835
836
|
context: CoreContext
|
|
836
837
|
}, children);
|
|
@@ -997,12 +998,13 @@ const { useGetAggMDSQuery, useGetMDSQuery, useGetTagsQuery, useGetDataQuery, use
|
|
|
997
998
|
|
|
998
999
|
// using a random uuid v4 as the namespace
|
|
999
1000
|
const GEN3_APP_NAMESPACE = '7bfaa818-c69c-457e-8d87-413cf60c25f0';
|
|
1001
|
+
|
|
1000
1002
|
const getGen3AppId = (name, version)=>{
|
|
1001
1003
|
const nameVersion = `${name}::${version}`;
|
|
1002
1004
|
return v5(nameVersion, GEN3_APP_NAMESPACE);
|
|
1003
1005
|
};
|
|
1004
1006
|
/**
|
|
1005
|
-
*
|
|
1007
|
+
* Creates a Gen3App that is dynamically loaded
|
|
1006
1008
|
*/ const createGen3App = ({ App, name, version, requiredEntityTypes })=>{
|
|
1007
1009
|
// create a stable id for this app
|
|
1008
1010
|
const nameVersion = `${name}::${version}`;
|
|
@@ -1014,20 +1016,95 @@ const getGen3AppId = (name, version)=>{
|
|
|
1014
1016
|
// need to register its name, category, path, data requirements
|
|
1015
1017
|
// this will be used to build page3
|
|
1016
1018
|
// click app link
|
|
1019
|
+
// const store = configureStore({
|
|
1020
|
+
// // TODO allow user to pass in a reducer in CreateGen3AppOptions?
|
|
1021
|
+
// reducer: (state) => state,
|
|
1022
|
+
// devTools: {
|
|
1023
|
+
// name: `${nameVersion}::${id}`,
|
|
1024
|
+
// },
|
|
1025
|
+
// });
|
|
1026
|
+
const Gen3AppWrapper = (props)=>{
|
|
1027
|
+
useEffect(()=>{
|
|
1028
|
+
document.title = `GEN3 - ${name}`;
|
|
1029
|
+
});
|
|
1030
|
+
return /*#__PURE__*/ React__default.createElement(App, props);
|
|
1031
|
+
};
|
|
1032
|
+
// add the app to the store
|
|
1033
|
+
coreStore.dispatch(addGen3AppMetadata({
|
|
1034
|
+
id,
|
|
1035
|
+
name,
|
|
1036
|
+
version,
|
|
1037
|
+
requiredEntityTypes
|
|
1038
|
+
}));
|
|
1039
|
+
registerGen3App(name, Gen3AppWrapper);
|
|
1040
|
+
return Gen3AppWrapper;
|
|
1041
|
+
};
|
|
1042
|
+
// ----------------------------------------------------------------------------------------
|
|
1043
|
+
// Apps with Local Storage
|
|
1044
|
+
//
|
|
1045
|
+
const createAppStore = (options)=>{
|
|
1046
|
+
const { name, version, reducers, middleware } = options;
|
|
1047
|
+
const nameVersion = `${name}::${version}`;
|
|
1048
|
+
const id = v5(nameVersion, GEN3_APP_NAMESPACE);
|
|
1017
1049
|
const store = configureStore({
|
|
1018
|
-
|
|
1019
|
-
reducer: (state)=>state,
|
|
1050
|
+
reducer: reducers,
|
|
1020
1051
|
devTools: {
|
|
1021
1052
|
name: `${nameVersion}::${id}`
|
|
1022
|
-
}
|
|
1053
|
+
},
|
|
1054
|
+
middleware: (getDefaultMiddleware)=>middleware ? getDefaultMiddleware({
|
|
1055
|
+
serializableCheck: {
|
|
1056
|
+
ignoredActions: [
|
|
1057
|
+
FLUSH,
|
|
1058
|
+
REHYDRATE,
|
|
1059
|
+
PAUSE,
|
|
1060
|
+
PERSIST,
|
|
1061
|
+
PURGE,
|
|
1062
|
+
REGISTER
|
|
1063
|
+
]
|
|
1064
|
+
}
|
|
1065
|
+
}).concat(middleware) : getDefaultMiddleware({
|
|
1066
|
+
serializableCheck: {
|
|
1067
|
+
ignoredActions: [
|
|
1068
|
+
FLUSH,
|
|
1069
|
+
REHYDRATE,
|
|
1070
|
+
PAUSE,
|
|
1071
|
+
PERSIST,
|
|
1072
|
+
PURGE,
|
|
1073
|
+
REGISTER
|
|
1074
|
+
]
|
|
1075
|
+
}
|
|
1076
|
+
})
|
|
1023
1077
|
});
|
|
1024
|
-
const
|
|
1078
|
+
const context = /*#__PURE__*/ React__default.createContext(undefined);
|
|
1079
|
+
const useAppSelector = createSelectorHook(context);
|
|
1080
|
+
const useAppDispatch = createDispatchHook(context);
|
|
1081
|
+
const useAppStore = createStoreHook(context);
|
|
1082
|
+
return {
|
|
1083
|
+
id: id,
|
|
1084
|
+
AppStore: store,
|
|
1085
|
+
AppContext: context,
|
|
1086
|
+
useAppSelector: useAppSelector,
|
|
1087
|
+
useAppDispatch: useAppDispatch,
|
|
1088
|
+
useAppStore: useAppStore
|
|
1089
|
+
};
|
|
1090
|
+
};
|
|
1091
|
+
const createGen3AppWithOwnStore = (options)=>{
|
|
1092
|
+
const { App, id, name, version, requiredEntityTypes, store, context } = options;
|
|
1093
|
+
// need to create store and provider.
|
|
1094
|
+
// return a component representing this app
|
|
1095
|
+
// if component gets added to a list, then the list can be iterated in index.js and each provider component can be added
|
|
1096
|
+
// a route can be setup for the app
|
|
1097
|
+
// need to register its name, category, path, data requirements
|
|
1098
|
+
// this will be used to build page3
|
|
1099
|
+
// click app link
|
|
1100
|
+
const Gen3AppWrapper = (props)=>{
|
|
1025
1101
|
useEffect(()=>{
|
|
1026
1102
|
document.title = `GEN3 - ${name}`;
|
|
1027
1103
|
});
|
|
1028
|
-
return /*#__PURE__*/
|
|
1029
|
-
store: store
|
|
1030
|
-
|
|
1104
|
+
return /*#__PURE__*/ React__default.createElement(Provider, {
|
|
1105
|
+
store: store,
|
|
1106
|
+
context: context
|
|
1107
|
+
}, /*#__PURE__*/ React__default.createElement(CookiesProvider, null, /*#__PURE__*/ React__default.createElement(App, props)));
|
|
1031
1108
|
};
|
|
1032
1109
|
// add the app to the store
|
|
1033
1110
|
coreStore.dispatch(addGen3AppMetadata({
|
|
@@ -1036,10 +1113,69 @@ const getGen3AppId = (name, version)=>{
|
|
|
1036
1113
|
version,
|
|
1037
1114
|
requiredEntityTypes
|
|
1038
1115
|
}));
|
|
1039
|
-
registerGen3App(
|
|
1116
|
+
registerGen3App(name, Gen3AppWrapper);
|
|
1040
1117
|
return Gen3AppWrapper;
|
|
1041
1118
|
};
|
|
1042
1119
|
|
|
1120
|
+
const createAppApiForRTKQ = (reducerPath, baseQuery)=>{
|
|
1121
|
+
const appContext = React.createContext(undefined);
|
|
1122
|
+
const useAppSelector = createSelectorHook(appContext);
|
|
1123
|
+
const useAppDispatch = createDispatchHook(appContext);
|
|
1124
|
+
const useAppStore = createStoreHook(appContext);
|
|
1125
|
+
const appCreateApi = buildCreateApi(coreModule(), reactHooksModule({
|
|
1126
|
+
hooks: {
|
|
1127
|
+
useDispatch: useAppDispatch,
|
|
1128
|
+
useSelector: useAppSelector,
|
|
1129
|
+
useStore: useAppStore
|
|
1130
|
+
}
|
|
1131
|
+
}));
|
|
1132
|
+
const appRTKQApi = appCreateApi({
|
|
1133
|
+
reducerPath: reducerPath,
|
|
1134
|
+
baseQuery: baseQuery ?? fetchBaseQuery({
|
|
1135
|
+
baseUrl: `${GEN3_API}`,
|
|
1136
|
+
prepareHeaders: (headers)=>{
|
|
1137
|
+
headers.set('Content-Type', 'application/json');
|
|
1138
|
+
let accessToken = undefined;
|
|
1139
|
+
if (process.env.NODE_ENV === 'development') {
|
|
1140
|
+
// NOTE: This cookie can only be accessed from the client side
|
|
1141
|
+
// in development mode. Otherwise, the cookie is set as httpOnly
|
|
1142
|
+
accessToken = getCookie('credentials_token');
|
|
1143
|
+
}
|
|
1144
|
+
if (accessToken) headers.set('Authorization', `Bearer ${accessToken}`);
|
|
1145
|
+
return headers;
|
|
1146
|
+
}
|
|
1147
|
+
}),
|
|
1148
|
+
endpoints: ()=>({})
|
|
1149
|
+
});
|
|
1150
|
+
const appMiddleware = appRTKQApi.middleware;
|
|
1151
|
+
const appStore = configureStore({
|
|
1152
|
+
reducer: {
|
|
1153
|
+
[appRTKQApi.reducerPath]: appRTKQApi.reducer
|
|
1154
|
+
},
|
|
1155
|
+
middleware: (getDefaultMiddleware)=>getDefaultMiddleware({
|
|
1156
|
+
serializableCheck: {
|
|
1157
|
+
ignoredActions: [
|
|
1158
|
+
FLUSH,
|
|
1159
|
+
REHYDRATE,
|
|
1160
|
+
PAUSE,
|
|
1161
|
+
PERSIST,
|
|
1162
|
+
PURGE,
|
|
1163
|
+
REGISTER
|
|
1164
|
+
]
|
|
1165
|
+
}
|
|
1166
|
+
}).concat(appMiddleware)
|
|
1167
|
+
});
|
|
1168
|
+
return {
|
|
1169
|
+
useAppSelector: useAppSelector,
|
|
1170
|
+
useAppDispatch: useAppDispatch,
|
|
1171
|
+
useAppStore: useAppStore,
|
|
1172
|
+
AppContext: appContext,
|
|
1173
|
+
appApi: appRTKQApi,
|
|
1174
|
+
appContext: appContext,
|
|
1175
|
+
appStore: appStore
|
|
1176
|
+
};
|
|
1177
|
+
};
|
|
1178
|
+
|
|
1043
1179
|
const graphQLWithTags = gen3Api.enhanceEndpoints({
|
|
1044
1180
|
addTagTypes: [
|
|
1045
1181
|
'graphQL'
|
|
@@ -1496,14 +1632,14 @@ const useGetStatus = ()=>{
|
|
|
1496
1632
|
}
|
|
1497
1633
|
}),
|
|
1498
1634
|
getFieldCountSummary: builder.query({
|
|
1499
|
-
query: ({ type, field, filters })=>{
|
|
1635
|
+
query: ({ type, field, filters, accessibility = Accessibility.ALL })=>{
|
|
1500
1636
|
const gqlFilters = convertFilterSetToGqlFilter(filters);
|
|
1501
|
-
const query = `query ($filter: JSON) {
|
|
1637
|
+
const query = `query summary ($filter: JSON) {
|
|
1502
1638
|
_aggregation {
|
|
1503
|
-
${type} (filter: $filter) {
|
|
1639
|
+
${type} (filter: $filter, accessibility: ${accessibility}) {
|
|
1504
1640
|
${field} {
|
|
1505
1641
|
histogram {
|
|
1506
|
-
sum
|
|
1642
|
+
sum,
|
|
1507
1643
|
}
|
|
1508
1644
|
}
|
|
1509
1645
|
}
|
|
@@ -1601,12 +1737,7 @@ const useGetArrayTypes = ()=>{
|
|
|
1601
1737
|
return data ? data['indices'] : {};
|
|
1602
1738
|
}
|
|
1603
1739
|
};
|
|
1604
|
-
const { useGetRawDataAndTotalCountsQuery, useGetAccessibleDataQuery, useGetAllFieldsForTypeQuery, useGetAggsQuery, useGetSubAggsQuery, useGetCountsQuery, useGetFieldCountSummaryQuery, useGetFieldsForIndexQuery, useGeneralGQLQuery, useLazyGeneralGQLQuery } = explorerApi;
|
|
1605
|
-
const EmptyAggData = {};
|
|
1606
|
-
const selectAggDataForIndex = (state, index, field)=>{
|
|
1607
|
-
const data = state.guppyApi.aggs[index]?.[field]?.histogram;
|
|
1608
|
-
return data ?? EmptyAggData;
|
|
1609
|
-
};
|
|
1740
|
+
const { useGetRawDataAndTotalCountsQuery, useGetAccessibleDataQuery, useGetAllFieldsForTypeQuery, useGetAggsQuery, useLazyGetAggsQuery, useGetSubAggsQuery, useGetCountsQuery, useGetFieldCountSummaryQuery, useGetFieldsForIndexQuery, useGeneralGQLQuery, useLazyGeneralGQLQuery } = explorerApi;
|
|
1610
1741
|
|
|
1611
1742
|
/**
|
|
1612
1743
|
* Flattens a deep nested JSON object skipping
|
|
@@ -2079,5 +2210,5 @@ const SubmissionGraphqlQuery = `query transactionList {
|
|
|
2079
2210
|
});
|
|
2080
2211
|
const { useGetProjectsQuery, useGetSubmissionGraphQLQuery, useGetProjectsDetailsQuery, useLazyGetProjectsQuery, useLazyGetSubmissionGraphQLQuery, useGetSubmissionsQuery, useGetDictionaryQuery } = submissionApi;
|
|
2081
2212
|
|
|
2082
|
-
export { Accessibility, CoreContext, CoreProvider, GEN3_API, GEN3_AUTHZ_API, GEN3_COMMONS_NAME, GEN3_CROSSWALK_API, GEN3_DOMAIN, GEN3_DOWNLOADS_ENDPOINT, GEN3_FENCE_API, GEN3_GUPPY_API, GEN3_MDS_API, GEN3_REDIRECT_URL, GEN3_SUBMISSION_API, GEN3_WORKSPACE_STATUS_API, Modals, clearCohortFilters, cohortReducer, convertFilterSetToGqlFilter, coreStore, createGen3App, createUseCoreDataHook, downloadFromGuppyToBlob, downloadJSONDataFromGuppy, drsHostnamesReducer, extractEnumFilterValue, extractFieldNameFromFullFieldName, extractFilterValue, extractIndexAndFieldNameFromFullFieldName, extractIndexFromFullFieldName, fetchFence, fetchJson, fetchUserState, fieldNameToTitle, gen3Api, getGen3AppId, graphQLAPI, graphQLWithTags, guppyAPISliceMiddleware, guppyApi, guppyApiReducer, guppyApiSliceReducerPath, handleOperation, hideModal, isAuthenticated, isErrorWithMessage, isFetchBaseQueryError, isFetchParseError, isFilterEmpty, isGuppyAggregationData, isHistogramData, isHistogramDataAArray, isHistogramDataAnEnum, isHistogramDataArray, isHistogramDataArrayARange, isHistogramDataArrayAnEnum, isHistogramDataCollection, isHistogramRangeData, isJSONObject, isJSONValue, isJSONValueArray, isOperationWithField, isPending, isProgramUrl, isRootUrl, listifyMethodsFromMapping, logoutFence, prependIndexToFieldName, projectCodeFromResourcePath, rawDataQueryStrForEachField, removeCohortFilter, resetUserState, resourcePathFromProjectID,
|
|
2213
|
+
export { Accessibility, CoreContext, CoreProvider, GEN3_API, GEN3_AUTHZ_API, GEN3_COMMONS_NAME, GEN3_CROSSWALK_API, GEN3_DOMAIN, GEN3_DOWNLOADS_ENDPOINT, GEN3_FENCE_API, GEN3_GUPPY_API, GEN3_MDS_API, GEN3_REDIRECT_URL, GEN3_SUBMISSION_API, GEN3_WORKSPACE_STATUS_API, Modals, clearCohortFilters, cohortReducer, convertFilterSetToGqlFilter, coreStore, createAppApiForRTKQ, createAppStore, createGen3App, createGen3AppWithOwnStore, createUseCoreDataHook, downloadFromGuppyToBlob, downloadJSONDataFromGuppy, drsHostnamesReducer, extractEnumFilterValue, extractFieldNameFromFullFieldName, extractFilterValue, extractIndexAndFieldNameFromFullFieldName, extractIndexFromFullFieldName, fetchFence, fetchJson, fetchUserState, fieldNameToTitle, gen3Api, getGen3AppId, graphQLAPI, graphQLWithTags, guppyAPISliceMiddleware, guppyApi, guppyApiReducer, guppyApiSliceReducerPath, handleOperation, hideModal, isAuthenticated, isErrorWithMessage, isFetchBaseQueryError, isFetchParseError, isFilterEmpty, isGuppyAggregationData, isHistogramData, isHistogramDataAArray, isHistogramDataAnEnum, isHistogramDataArray, isHistogramDataArrayARange, isHistogramDataArrayAnEnum, isHistogramDataCollection, isHistogramRangeData, isJSONObject, isJSONValue, isJSONValueArray, isOperationWithField, isPending, isProgramUrl, isRootUrl, listifyMethodsFromMapping, logoutFence, prependIndexToFieldName, projectCodeFromResourcePath, rawDataQueryStrForEachField, removeCohortFilter, resetUserState, resourcePathFromProjectID, selectAuthzMappingData, selectCSRFToken, selectCSRFTokenData, selectCohortFilters, selectCurrentCohort, selectCurrentCohortId, selectCurrentCohortName, selectCurrentMessage, selectCurrentModal, selectGen3AppByName, selectGen3AppMetadataByName, selectHeadersWithCSRFToken, selectIndexFilters, selectIndexedFilterByName, selectUser, selectUserAuthStatus, selectUserData, selectUserDetails, selectUserLoginStatus, setDRSHostnames, showModal, submissionApi, trimFirstFieldNameToTitle, updateCohortFilter, useAddNewCredentialMutation, useAskQuestionMutation, useAuthorizeFromCredentialsMutation, useCoreDispatch, useCoreSelector, useCoreStore, useDownloadFromGuppyMutation, useFetchUserDetailsQuery, useGeneralGQLQuery, useGetAISearchStatusQuery, useGetAISearchVersionQuery, useGetAccessibleDataQuery, useGetAggMDSQuery, useGetAggsQuery, useGetAllFieldsForTypeQuery, useGetArrayTypes, useGetAuthzMappingsQuery, useGetCSRFQuery, useGetCountsQuery, useGetCredentialsQuery, useGetCrosswalkDataQuery, useGetDataQuery, useGetDictionaryQuery, useGetExternalLoginsQuery, useGetFieldCountSummaryQuery, useGetFieldsForIndexQuery, useGetIndexAggMDSQuery, useGetIndexFields, useGetJWKKeysQuery, useGetLoginProvidersQuery, useGetMDSQuery, useGetProjectsDetailsQuery, useGetProjectsQuery, useGetRawDataAndTotalCountsQuery, useGetStatus, useGetSubAggsQuery, useGetSubmissionGraphQLQuery, useGetSubmissionsQuery, useGetTagsQuery, useGetWorkspaceOptionsQuery, useGetWorkspacePayModelsQuery, useGetWorkspaceStatusQuery, useGraphQLQuery, useIsExternalConnectedQuery, useIsUserLoggedIn, useLazyFetchUserDetailsQuery, useLazyGeneralGQLQuery, useLazyGetAggsQuery, useLazyGetCrosswalkDataQuery, useLazyGetExternalLoginsQuery, useLazyGetProjectsQuery, useLazyGetSubmissionGraphQLQuery, useLazyIsExternalConnectedQuery, usePrevious, useRemoveCredentialMutation, useUser, useUserAuth, userHasCreateOrUpdateOnAnyProject, userHasDataUpload, userHasMethodForServiceOnProject, userHasMethodForServiceOnResource, userHasMethodOnAnyProject, userHasSheepdogProgramAdmin, userHasSheepdogProjectAdmin };
|
|
2083
2214
|
//# sourceMappingURL=index.js.map
|