@gen3/core 0.11.33 → 0.11.34
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 +624 -554
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/server.js +45 -0
- package/dist/cjs/server.js.map +1 -0
- package/dist/dts/constants.d.ts +1 -0
- package/dist/dts/constants.d.ts.map +1 -1
- package/dist/dts/features/cart/cartSelectors.d.ts +129 -0
- package/dist/dts/features/cart/cartSelectors.d.ts.map +1 -0
- package/dist/dts/features/cart/cartSlice.d.ts +24 -0
- package/dist/dts/features/cart/cartSlice.d.ts.map +1 -0
- package/dist/dts/features/cart/index.d.ts +5 -0
- package/dist/dts/features/cart/index.d.ts.map +1 -0
- package/dist/dts/features/cart/test/cartSelector.unit.test.d.ts +2 -0
- package/dist/dts/features/cart/test/cartSelector.unit.test.d.ts.map +1 -0
- package/dist/dts/features/cohort/cohortManagerSelector.d.ts +4 -0
- package/dist/dts/features/cohort/cohortManagerSelector.d.ts.map +1 -1
- package/dist/dts/features/cohort/cohortManagerSlice.d.ts +1 -0
- package/dist/dts/features/cohort/cohortManagerSlice.d.ts.map +1 -1
- package/dist/dts/features/cohort/utils.d.ts +13 -0
- package/dist/dts/features/cohort/utils.d.ts.map +1 -1
- package/dist/dts/features/filters/types.d.ts +7 -0
- package/dist/dts/features/filters/types.d.ts.map +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +3 -0
- package/dist/dts/features/user/userSliceRTK.d.ts.map +1 -1
- package/dist/dts/hooks.d.ts +2 -0
- package/dist/dts/hooks.d.ts.map +1 -1
- package/dist/dts/index.d.ts +3 -2
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/dts/reducers.d.ts +2 -0
- package/dist/dts/reducers.d.ts.map +1 -1
- package/dist/dts/server.d.ts +4 -0
- package/dist/dts/server.d.ts.map +1 -0
- package/dist/dts/store.d.ts +4 -0
- package/dist/dts/store.d.ts.map +1 -1
- package/dist/esm/index.js +613 -555
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/server.js +29 -0
- package/dist/esm/server.js.map +1 -0
- package/dist/index.d.ts +385 -208
- package/dist/server.d.ts +31 -0
- package/package.json +7 -2
package/dist/index.d.ts
CHANGED
|
@@ -2,9 +2,9 @@ import * as redux from 'redux';
|
|
|
2
2
|
import { Action, Reducer as Reducer$1, Store } from 'redux';
|
|
3
3
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
4
4
|
import { Middleware, Reducer, EntityState, UnknownAction, Dispatch } from '@reduxjs/toolkit';
|
|
5
|
-
import * as redux_thunk from 'redux-thunk';
|
|
6
5
|
import * as _reduxjs_toolkit_query from '@reduxjs/toolkit/query';
|
|
7
6
|
import { FetchBaseQueryError, QueryStatus } from '@reduxjs/toolkit/query';
|
|
7
|
+
import * as redux_thunk from 'redux-thunk';
|
|
8
8
|
import * as React from 'react';
|
|
9
9
|
import React__default, { ComponentType } from 'react';
|
|
10
10
|
import { PersistConfig, PersistState } from 'redux-persist';
|
|
@@ -38,123 +38,15 @@ declare enum Accessibility {
|
|
|
38
38
|
UNACCESSIBLE = "unaccessible",
|
|
39
39
|
ALL = "all"
|
|
40
40
|
}
|
|
41
|
+
declare const CART_LIMIT = 10000;
|
|
41
42
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
user_id: string;
|
|
46
|
-
account_id: string;
|
|
47
|
-
request_status: string;
|
|
48
|
-
local: boolean;
|
|
49
|
-
region: string;
|
|
50
|
-
ecs: boolean;
|
|
51
|
-
subnet: number;
|
|
52
|
-
'hard-limit': number;
|
|
53
|
-
'soft-limit': number;
|
|
54
|
-
'total-usage': number;
|
|
55
|
-
current_pay_model: boolean;
|
|
56
|
-
}
|
|
57
|
-
interface WorkspaceId {
|
|
58
|
-
id: string;
|
|
59
|
-
}
|
|
60
|
-
interface WorkspaceInfo extends WorkspaceId {
|
|
61
|
-
name: string;
|
|
62
|
-
idleTimeLimit: number;
|
|
63
|
-
memoryLimit: string;
|
|
64
|
-
cpuLimit: string;
|
|
65
|
-
}
|
|
66
|
-
interface WorkspaceInfoResponse {
|
|
67
|
-
id: string;
|
|
68
|
-
name: string;
|
|
69
|
-
'idle-time-limit': number;
|
|
70
|
-
'memory-limit': string;
|
|
71
|
-
'cpu-limit': string;
|
|
72
|
-
}
|
|
73
|
-
type WorkspaceOptionsResponse = Array<WorkspaceInfoResponse>;
|
|
74
|
-
type WorkspaceOptions = Array<WorkspaceInfo>;
|
|
75
|
-
interface WorkspacePayModelResponse {
|
|
76
|
-
currentPayModel: PayModel;
|
|
77
|
-
allPayModels: PayModel[];
|
|
78
|
-
noPayModel: boolean;
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* Workspace Pod status
|
|
82
|
-
*/
|
|
83
|
-
declare enum WorkspaceStatus {
|
|
84
|
-
Launching = "Launching",
|
|
85
|
-
Running = "Running",
|
|
86
|
-
Terminating = "Terminating",
|
|
87
|
-
Stopped = "Stopped",
|
|
88
|
-
NotFound = "Not Found",
|
|
89
|
-
Errored = "Errored",
|
|
90
|
-
StatusError = "Status Error"
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* requested state of pod, either by user or workspace monitor
|
|
94
|
-
*/
|
|
95
|
-
declare enum RequestedWorkspaceStatus {
|
|
96
|
-
Launch = "Launch",
|
|
97
|
-
Terminate = "Terminate",
|
|
98
|
-
Unset = "Unset"
|
|
99
|
-
}
|
|
100
|
-
declare enum PodConditionType {
|
|
101
|
-
PodScheduled = "PodScheduled",
|
|
102
|
-
Initialized = "Initialized",
|
|
103
|
-
ContainersReady = "ContainersReady",
|
|
104
|
-
PodReadyToStartContainers = "PodReadyToStartContainers",
|
|
105
|
-
ProxyConnected = "ProxyConnected",
|
|
106
|
-
Ready = "Ready"
|
|
107
|
-
}
|
|
108
|
-
declare enum PodStatus {
|
|
109
|
-
True = "True",
|
|
110
|
-
False = "False",
|
|
111
|
-
Unknown = "Unknown"
|
|
112
|
-
}
|
|
113
|
-
interface WorkspaceContainerState {
|
|
114
|
-
name: string;
|
|
115
|
-
ready: boolean;
|
|
116
|
-
state: {
|
|
117
|
-
running: {
|
|
118
|
-
startedAt: string;
|
|
119
|
-
};
|
|
120
|
-
} | {
|
|
121
|
-
waiting: {
|
|
122
|
-
reason: string;
|
|
123
|
-
};
|
|
124
|
-
} | {
|
|
125
|
-
terminated: {
|
|
126
|
-
reason: string;
|
|
127
|
-
};
|
|
128
|
-
};
|
|
129
|
-
}
|
|
130
|
-
interface WorkspacePodCondition {
|
|
131
|
-
type: PodConditionType;
|
|
132
|
-
status: PodStatus;
|
|
133
|
-
}
|
|
134
|
-
interface WorkspaceStatusResponse {
|
|
135
|
-
status: WorkspaceStatus;
|
|
136
|
-
conditions?: Array<WorkspacePodCondition>;
|
|
137
|
-
containerStates?: Array<WorkspaceContainerState>;
|
|
138
|
-
idleTimeLimit?: number;
|
|
139
|
-
lastActivityTime: number;
|
|
140
|
-
workspaceType?: string;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
interface WorkspaceState {
|
|
144
|
-
id: string;
|
|
145
|
-
status: WorkspaceStatus;
|
|
146
|
-
requestedStatus: RequestedWorkspaceStatus;
|
|
147
|
-
requestedStatusTimestamp: number;
|
|
43
|
+
type CartItemId = string;
|
|
44
|
+
interface CartItem extends Record<string, any> {
|
|
45
|
+
id: CartItemId;
|
|
148
46
|
}
|
|
149
|
-
declare const
|
|
150
|
-
declare const
|
|
151
|
-
declare const
|
|
152
|
-
declare const setRequestedWorkspaceStatus: _reduxjs_toolkit.ActionCreatorWithPayload<RequestedWorkspaceStatus, "ActiveWorkspace/setRequestedWorkspaceStatus">;
|
|
153
|
-
declare const setActiveWorkspace: _reduxjs_toolkit.ActionCreatorWithPayload<WorkspaceState, "ActiveWorkspace/setActiveWorkspace">;
|
|
154
|
-
declare const selectActiveWorkspaceId: (state: CoreState) => string;
|
|
155
|
-
declare const selectActiveWorkspaceStatus: (state: CoreState) => WorkspaceStatus;
|
|
156
|
-
declare const selectRequestedWorkspaceStatus: (state: CoreState) => RequestedWorkspaceStatus;
|
|
157
|
-
declare const selectRequestedWorkspaceStatusTimestamp: (state: CoreState) => number;
|
|
47
|
+
declare const cartReducer: redux.Reducer<_reduxjs_toolkit.EntityState<CartItem, string>>;
|
|
48
|
+
declare const addItemsToCart: _reduxjs_toolkit.ActionCreatorWithPayload<readonly CartItem[] | Record<string, CartItem>, "cart/addItemsToCart">;
|
|
49
|
+
declare const removeItemsFromCart: _reduxjs_toolkit.ActionCreatorWithPayload<readonly string[], "cart/removeItemsFromCart">;
|
|
158
50
|
|
|
159
51
|
interface ServiceAndMethod {
|
|
160
52
|
method: string;
|
|
@@ -2451,6 +2343,123 @@ declare const isFetchError: <T>(obj: unknown) => obj is FetchError<T>;
|
|
|
2451
2343
|
*/
|
|
2452
2344
|
declare const fetchFence: <T>({ endpoint, headers, body, method, isJSON, }: FetchRequest) => Promise<Gen3FenceResponse<T>>;
|
|
2453
2345
|
|
|
2346
|
+
interface PayModel {
|
|
2347
|
+
bmh_workspace_id: string;
|
|
2348
|
+
workspace_type: string;
|
|
2349
|
+
user_id: string;
|
|
2350
|
+
account_id: string;
|
|
2351
|
+
request_status: string;
|
|
2352
|
+
local: boolean;
|
|
2353
|
+
region: string;
|
|
2354
|
+
ecs: boolean;
|
|
2355
|
+
subnet: number;
|
|
2356
|
+
'hard-limit': number;
|
|
2357
|
+
'soft-limit': number;
|
|
2358
|
+
'total-usage': number;
|
|
2359
|
+
current_pay_model: boolean;
|
|
2360
|
+
}
|
|
2361
|
+
interface WorkspaceId {
|
|
2362
|
+
id: string;
|
|
2363
|
+
}
|
|
2364
|
+
interface WorkspaceInfo extends WorkspaceId {
|
|
2365
|
+
name: string;
|
|
2366
|
+
idleTimeLimit: number;
|
|
2367
|
+
memoryLimit: string;
|
|
2368
|
+
cpuLimit: string;
|
|
2369
|
+
}
|
|
2370
|
+
interface WorkspaceInfoResponse {
|
|
2371
|
+
id: string;
|
|
2372
|
+
name: string;
|
|
2373
|
+
'idle-time-limit': number;
|
|
2374
|
+
'memory-limit': string;
|
|
2375
|
+
'cpu-limit': string;
|
|
2376
|
+
}
|
|
2377
|
+
type WorkspaceOptionsResponse = Array<WorkspaceInfoResponse>;
|
|
2378
|
+
type WorkspaceOptions = Array<WorkspaceInfo>;
|
|
2379
|
+
interface WorkspacePayModelResponse {
|
|
2380
|
+
currentPayModel: PayModel;
|
|
2381
|
+
allPayModels: PayModel[];
|
|
2382
|
+
noPayModel: boolean;
|
|
2383
|
+
}
|
|
2384
|
+
/**
|
|
2385
|
+
* Workspace Pod status
|
|
2386
|
+
*/
|
|
2387
|
+
declare enum WorkspaceStatus {
|
|
2388
|
+
Launching = "Launching",
|
|
2389
|
+
Running = "Running",
|
|
2390
|
+
Terminating = "Terminating",
|
|
2391
|
+
Stopped = "Stopped",
|
|
2392
|
+
NotFound = "Not Found",
|
|
2393
|
+
Errored = "Errored",
|
|
2394
|
+
StatusError = "Status Error"
|
|
2395
|
+
}
|
|
2396
|
+
/**
|
|
2397
|
+
* requested state of pod, either by user or workspace monitor
|
|
2398
|
+
*/
|
|
2399
|
+
declare enum RequestedWorkspaceStatus {
|
|
2400
|
+
Launch = "Launch",
|
|
2401
|
+
Terminate = "Terminate",
|
|
2402
|
+
Unset = "Unset"
|
|
2403
|
+
}
|
|
2404
|
+
declare enum PodConditionType {
|
|
2405
|
+
PodScheduled = "PodScheduled",
|
|
2406
|
+
Initialized = "Initialized",
|
|
2407
|
+
ContainersReady = "ContainersReady",
|
|
2408
|
+
PodReadyToStartContainers = "PodReadyToStartContainers",
|
|
2409
|
+
ProxyConnected = "ProxyConnected",
|
|
2410
|
+
Ready = "Ready"
|
|
2411
|
+
}
|
|
2412
|
+
declare enum PodStatus {
|
|
2413
|
+
True = "True",
|
|
2414
|
+
False = "False",
|
|
2415
|
+
Unknown = "Unknown"
|
|
2416
|
+
}
|
|
2417
|
+
interface WorkspaceContainerState {
|
|
2418
|
+
name: string;
|
|
2419
|
+
ready: boolean;
|
|
2420
|
+
state: {
|
|
2421
|
+
running: {
|
|
2422
|
+
startedAt: string;
|
|
2423
|
+
};
|
|
2424
|
+
} | {
|
|
2425
|
+
waiting: {
|
|
2426
|
+
reason: string;
|
|
2427
|
+
};
|
|
2428
|
+
} | {
|
|
2429
|
+
terminated: {
|
|
2430
|
+
reason: string;
|
|
2431
|
+
};
|
|
2432
|
+
};
|
|
2433
|
+
}
|
|
2434
|
+
interface WorkspacePodCondition {
|
|
2435
|
+
type: PodConditionType;
|
|
2436
|
+
status: PodStatus;
|
|
2437
|
+
}
|
|
2438
|
+
interface WorkspaceStatusResponse {
|
|
2439
|
+
status: WorkspaceStatus;
|
|
2440
|
+
conditions?: Array<WorkspacePodCondition>;
|
|
2441
|
+
containerStates?: Array<WorkspaceContainerState>;
|
|
2442
|
+
idleTimeLimit?: number;
|
|
2443
|
+
lastActivityTime: number;
|
|
2444
|
+
workspaceType?: string;
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
interface WorkspaceState {
|
|
2448
|
+
id: string;
|
|
2449
|
+
status: WorkspaceStatus;
|
|
2450
|
+
requestedStatus: RequestedWorkspaceStatus;
|
|
2451
|
+
requestedStatusTimestamp: number;
|
|
2452
|
+
}
|
|
2453
|
+
declare const setActiveWorkspaceId: _reduxjs_toolkit.ActionCreatorWithPayload<WorkspaceId, "ActiveWorkspace/setActiveWorkspaceId">;
|
|
2454
|
+
declare const clearActiveWorkspaceId: _reduxjs_toolkit.ActionCreatorWithoutPayload<"ActiveWorkspace/clearActiveWorkspaceId">;
|
|
2455
|
+
declare const setActiveWorkspaceStatus: _reduxjs_toolkit.ActionCreatorWithPayload<WorkspaceStatus, "ActiveWorkspace/setActiveWorkspaceStatus">;
|
|
2456
|
+
declare const setRequestedWorkspaceStatus: _reduxjs_toolkit.ActionCreatorWithPayload<RequestedWorkspaceStatus, "ActiveWorkspace/setRequestedWorkspaceStatus">;
|
|
2457
|
+
declare const setActiveWorkspace: _reduxjs_toolkit.ActionCreatorWithPayload<WorkspaceState, "ActiveWorkspace/setActiveWorkspace">;
|
|
2458
|
+
declare const selectActiveWorkspaceId: (state: CoreState) => string;
|
|
2459
|
+
declare const selectActiveWorkspaceStatus: (state: CoreState) => WorkspaceStatus;
|
|
2460
|
+
declare const selectRequestedWorkspaceStatus: (state: CoreState) => RequestedWorkspaceStatus;
|
|
2461
|
+
declare const selectRequestedWorkspaceStatusTimestamp: (state: CoreState) => number;
|
|
2462
|
+
|
|
2454
2463
|
interface guppyFetchError {
|
|
2455
2464
|
readonly url: string;
|
|
2456
2465
|
readonly status: number;
|
|
@@ -2564,7 +2573,14 @@ interface FilterSet {
|
|
|
2564
2573
|
declare const isFilterSet: (input: any) => input is FilterSet;
|
|
2565
2574
|
declare const isUnion: (value: unknown) => value is Union;
|
|
2566
2575
|
declare const isIntersection: (value: unknown) => value is Intersection;
|
|
2576
|
+
/**
|
|
2577
|
+
* Type guard for Union or Intersection
|
|
2578
|
+
* @param o - operator to check
|
|
2579
|
+
* @category Filters
|
|
2580
|
+
*/
|
|
2581
|
+
declare const isIntersectionOrUnion: (o: Operation) => o is Intersection | Union;
|
|
2567
2582
|
declare const isOperandsType: (operation: Operation) => operation is OperandsType;
|
|
2583
|
+
declare const isNestedFilter: (operation: Operation) => operation is NestedFilter;
|
|
2568
2584
|
interface OperationHandler<T> {
|
|
2569
2585
|
handleEquals: (op: Equals) => T;
|
|
2570
2586
|
handleNotEquals: (op: NotEquals) => T;
|
|
@@ -6062,21 +6078,50 @@ declare const selectSharedFiltersForFields: (state: CoreState, field: string) =>
|
|
|
6062
6078
|
declare const setShouldShareFilters: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "cohortSharedFilters/setShouldShareFilters">;
|
|
6063
6079
|
declare const setSharedFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SharedFieldMapping, "cohortSharedFilters/setSharedFilters">;
|
|
6064
6080
|
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6071
|
-
'FirstTimeModal' = "FirstTimeModal",
|
|
6072
|
-
'SessionExpireModal' = "SessionExpireModal",
|
|
6073
|
-
'NoAccessModal' = "NoAccessModal",
|
|
6074
|
-
'CreateCredentialsAPIKeyModal' = "CreateCredentialsAPIKeyModal",
|
|
6075
|
-
'GeneralErrorModal' = "GeneralErrorModal"
|
|
6081
|
+
type CombineMode = 'and' | 'or';
|
|
6082
|
+
type CohortId = string;
|
|
6083
|
+
type CountsData = Record<string, number>;
|
|
6084
|
+
interface StorageEntity<T> {
|
|
6085
|
+
id: T;
|
|
6086
|
+
name: string;
|
|
6076
6087
|
}
|
|
6077
|
-
|
|
6078
|
-
|
|
6079
|
-
|
|
6088
|
+
/**
|
|
6089
|
+
* A Cohort is a collection of filters that can be used to query the GDC API.
|
|
6090
|
+
* The cohort interface is used to manage the cohort state in the redux-toolkit entity adapter.
|
|
6091
|
+
* @see https://redux-toolkit.js.org/api/createEntityAdapter
|
|
6092
|
+
*
|
|
6093
|
+
* @property id - the id of the cohort
|
|
6094
|
+
* @property name - the name of the cohort
|
|
6095
|
+
* @property filters - the filters for the cohort
|
|
6096
|
+
* @property modified - flag indicating if the cohort has been modified
|
|
6097
|
+
* @property modifiedDatetime - the last time the cohort was modified
|
|
6098
|
+
* @property saved - flag indicating if the cohort has been saved
|
|
6099
|
+
* @category Cohort
|
|
6100
|
+
*/
|
|
6101
|
+
interface Cohort extends StorageEntity<CohortId> {
|
|
6102
|
+
filters: IndexedFilterSet;
|
|
6103
|
+
modified?: boolean;
|
|
6104
|
+
createdDatetime: string;
|
|
6105
|
+
modifiedDatetime: string;
|
|
6106
|
+
saved?: boolean;
|
|
6107
|
+
counts?: CountsData;
|
|
6108
|
+
}
|
|
6109
|
+
|
|
6110
|
+
/**
|
|
6111
|
+
* Defines the modals slice of the Redux store.
|
|
6112
|
+
* This slice is used to control the display of standard Gen3 modals.
|
|
6113
|
+
* and can be extended to add custom modals by representing them as strings.
|
|
6114
|
+
*/
|
|
6115
|
+
declare enum Modals {
|
|
6116
|
+
'FirstTimeModal' = "FirstTimeModal",
|
|
6117
|
+
'SessionExpireModal' = "SessionExpireModal",
|
|
6118
|
+
'NoAccessModal' = "NoAccessModal",
|
|
6119
|
+
'CreateCredentialsAPIKeyModal' = "CreateCredentialsAPIKeyModal",
|
|
6120
|
+
'GeneralErrorModal' = "GeneralErrorModal"
|
|
6121
|
+
}
|
|
6122
|
+
type CurrentModal = Modals | string | null;
|
|
6123
|
+
interface ModalState {
|
|
6124
|
+
currentModal: CurrentModal;
|
|
6080
6125
|
message?: string;
|
|
6081
6126
|
}
|
|
6082
6127
|
declare const showModal: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
@@ -6101,6 +6146,53 @@ type EntityType = 'case' | 'gene' | 'ssm' | 'cnv' | 'file';
|
|
|
6101
6146
|
declare const selectGen3AppMetadataByName: (state: CoreState, appName: string) => Gen3AppMetadata;
|
|
6102
6147
|
declare const selectGen3AppByName: (appName: string) => React__default.ReactNode;
|
|
6103
6148
|
|
|
6149
|
+
interface CurrentCohortState {
|
|
6150
|
+
currentCohortId: string;
|
|
6151
|
+
message?: string[];
|
|
6152
|
+
}
|
|
6153
|
+
interface UpdateFilterParams {
|
|
6154
|
+
index: string;
|
|
6155
|
+
field: string;
|
|
6156
|
+
filter: Operation;
|
|
6157
|
+
}
|
|
6158
|
+
interface SetFilterParams {
|
|
6159
|
+
index: string;
|
|
6160
|
+
filters: FilterSet;
|
|
6161
|
+
}
|
|
6162
|
+
interface SetAllIndexFiltersParams {
|
|
6163
|
+
filters: IndexedFilterSet;
|
|
6164
|
+
}
|
|
6165
|
+
interface RemoveFilterParams {
|
|
6166
|
+
index: string;
|
|
6167
|
+
field: string;
|
|
6168
|
+
}
|
|
6169
|
+
interface ClearAllFilterParams {
|
|
6170
|
+
index: string;
|
|
6171
|
+
}
|
|
6172
|
+
interface CreateCohortParams {
|
|
6173
|
+
name?: string;
|
|
6174
|
+
filters?: IndexedFilterSet;
|
|
6175
|
+
}
|
|
6176
|
+
interface UpdateCohortNameParams {
|
|
6177
|
+
id: string;
|
|
6178
|
+
name: string;
|
|
6179
|
+
}
|
|
6180
|
+
declare const createNewCohort: _reduxjs_toolkit.ActionCreatorWithPayload<CreateCohortParams, "cohort/createNewCohort">;
|
|
6181
|
+
declare const updateCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateFilterParams, "cohort/updateCohortFilter">;
|
|
6182
|
+
declare const setCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<SetFilterParams, "cohort/setCohortFilter">;
|
|
6183
|
+
declare const setCohortIndexFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SetAllIndexFiltersParams, "cohort/setCohortIndexFilters">;
|
|
6184
|
+
declare const duplicateCohort: _reduxjs_toolkit.ActionCreatorWithoutPayload<"cohort/duplicateCohort">;
|
|
6185
|
+
declare const removeCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<RemoveFilterParams, "cohort/removeCohortFilter">;
|
|
6186
|
+
declare const clearCohortFilters: _reduxjs_toolkit.ActionCreatorWithPayload<ClearAllFilterParams, "cohort/clearCohortFilters">;
|
|
6187
|
+
declare const removeCohort: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6188
|
+
shouldShowMessage?: boolean;
|
|
6189
|
+
id: string;
|
|
6190
|
+
}, "cohort/removeCohort">;
|
|
6191
|
+
declare const setCurrentCohortId: _reduxjs_toolkit.ActionCreatorWithPayload<string, "cohort/setCurrentCohortId">;
|
|
6192
|
+
declare const updateCohortName: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateCohortNameParams, "cohort/updateCohortName">;
|
|
6193
|
+
declare const setCohortList: _reduxjs_toolkit.ActionCreatorWithPayload<Cohort[], "cohort/setCohortList">;
|
|
6194
|
+
declare const cohortReducer: redux.Reducer<EntityState<Cohort, string> & CurrentCohortState>;
|
|
6195
|
+
|
|
6104
6196
|
/**
|
|
6105
6197
|
* Update declaration of persistReducer to support redux v5
|
|
6106
6198
|
*/
|
|
@@ -6141,6 +6233,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6141
6233
|
data: Gen3FenceResponse<unknown>;
|
|
6142
6234
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6143
6235
|
}, never, "userAuthApi">;
|
|
6236
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6144
6237
|
} & {
|
|
6145
6238
|
_persist: PersistState;
|
|
6146
6239
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6174,6 +6267,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6174
6267
|
data: Gen3FenceResponse<unknown>;
|
|
6175
6268
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6176
6269
|
}, never, "userAuthApi">;
|
|
6270
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6177
6271
|
} & {
|
|
6178
6272
|
_persist: PersistState;
|
|
6179
6273
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6208,6 +6302,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6208
6302
|
data: Gen3FenceResponse<unknown>;
|
|
6209
6303
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6210
6304
|
}, never, "userAuthApi">;
|
|
6305
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6211
6306
|
} & {
|
|
6212
6307
|
_persist: PersistState;
|
|
6213
6308
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6241,6 +6336,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6241
6336
|
data: Gen3FenceResponse<unknown>;
|
|
6242
6337
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6243
6338
|
}, never, "userAuthApi">;
|
|
6339
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6244
6340
|
} & {
|
|
6245
6341
|
_persist: PersistState;
|
|
6246
6342
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6879,82 +6975,6 @@ declare const useGetFederatedLoginStatus: ({ selectedFiles, }: FederatedLoginSta
|
|
|
6879
6975
|
};
|
|
6880
6976
|
declare const getFederatedLoginStatus: (selectedFiles: ReadonlyArray<FileMetadata>) => Promise<ExternalLoginStatus>;
|
|
6881
6977
|
|
|
6882
|
-
type CombineMode = 'and' | 'or';
|
|
6883
|
-
type CohortId = string;
|
|
6884
|
-
type CountsData = Record<string, number>;
|
|
6885
|
-
interface StorageEntity<T> {
|
|
6886
|
-
id: T;
|
|
6887
|
-
name: string;
|
|
6888
|
-
}
|
|
6889
|
-
/**
|
|
6890
|
-
* A Cohort is a collection of filters that can be used to query the GDC API.
|
|
6891
|
-
* The cohort interface is used to manage the cohort state in the redux-toolkit entity adapter.
|
|
6892
|
-
* @see https://redux-toolkit.js.org/api/createEntityAdapter
|
|
6893
|
-
*
|
|
6894
|
-
* @property id - the id of the cohort
|
|
6895
|
-
* @property name - the name of the cohort
|
|
6896
|
-
* @property filters - the filters for the cohort
|
|
6897
|
-
* @property modified - flag indicating if the cohort has been modified
|
|
6898
|
-
* @property modifiedDatetime - the last time the cohort was modified
|
|
6899
|
-
* @property saved - flag indicating if the cohort has been saved
|
|
6900
|
-
* @category Cohort
|
|
6901
|
-
*/
|
|
6902
|
-
interface Cohort extends StorageEntity<CohortId> {
|
|
6903
|
-
filters: IndexedFilterSet;
|
|
6904
|
-
modified?: boolean;
|
|
6905
|
-
createdDatetime: string;
|
|
6906
|
-
modifiedDatetime: string;
|
|
6907
|
-
saved?: boolean;
|
|
6908
|
-
counts?: CountsData;
|
|
6909
|
-
}
|
|
6910
|
-
|
|
6911
|
-
interface CurrentCohortState {
|
|
6912
|
-
currentCohortId: string;
|
|
6913
|
-
message?: string[];
|
|
6914
|
-
}
|
|
6915
|
-
interface UpdateFilterParams {
|
|
6916
|
-
index: string;
|
|
6917
|
-
field: string;
|
|
6918
|
-
filter: Operation;
|
|
6919
|
-
}
|
|
6920
|
-
interface SetFilterParams {
|
|
6921
|
-
index: string;
|
|
6922
|
-
filters: FilterSet;
|
|
6923
|
-
}
|
|
6924
|
-
interface SetAllIndexFiltersParams {
|
|
6925
|
-
filters: IndexedFilterSet;
|
|
6926
|
-
}
|
|
6927
|
-
interface RemoveFilterParams {
|
|
6928
|
-
index: string;
|
|
6929
|
-
field: string;
|
|
6930
|
-
}
|
|
6931
|
-
interface ClearAllFilterParams {
|
|
6932
|
-
index: string;
|
|
6933
|
-
}
|
|
6934
|
-
interface CreateCohortParams {
|
|
6935
|
-
name?: string;
|
|
6936
|
-
filters?: IndexedFilterSet;
|
|
6937
|
-
}
|
|
6938
|
-
interface UpdateCohortNameParams {
|
|
6939
|
-
id: string;
|
|
6940
|
-
name: string;
|
|
6941
|
-
}
|
|
6942
|
-
declare const createNewCohort: _reduxjs_toolkit.ActionCreatorWithPayload<CreateCohortParams, "cohort/createNewCohort">;
|
|
6943
|
-
declare const updateCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateFilterParams, "cohort/updateCohortFilter">;
|
|
6944
|
-
declare const setCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<SetFilterParams, "cohort/setCohortFilter">;
|
|
6945
|
-
declare const setCohortIndexFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SetAllIndexFiltersParams, "cohort/setCohortIndexFilters">;
|
|
6946
|
-
declare const duplicateCohort: _reduxjs_toolkit.ActionCreatorWithoutPayload<"cohort/duplicateCohort">;
|
|
6947
|
-
declare const removeCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<RemoveFilterParams, "cohort/removeCohortFilter">;
|
|
6948
|
-
declare const clearCohortFilters: _reduxjs_toolkit.ActionCreatorWithPayload<ClearAllFilterParams, "cohort/clearCohortFilters">;
|
|
6949
|
-
declare const removeCohort: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6950
|
-
shouldShowMessage?: boolean;
|
|
6951
|
-
id: string;
|
|
6952
|
-
}, "cohort/removeCohort">;
|
|
6953
|
-
declare const setCurrentCohortId: _reduxjs_toolkit.ActionCreatorWithPayload<string, "cohort/setCurrentCohortId">;
|
|
6954
|
-
declare const updateCohortName: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateCohortNameParams, "cohort/updateCohortName">;
|
|
6955
|
-
declare const setCohortList: _reduxjs_toolkit.ActionCreatorWithPayload<Cohort[], "cohort/setCohortList">;
|
|
6956
|
-
declare const cohortReducer: redux.Reducer<EntityState<Cohort, string> & CurrentCohortState>;
|
|
6957
|
-
|
|
6958
6978
|
declare const toggleCohortBuilderCategoryFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6959
6979
|
index: string;
|
|
6960
6980
|
field: string;
|
|
@@ -7072,6 +7092,7 @@ declare const selectAllCohorts: (state: {
|
|
|
7072
7092
|
data: Gen3FenceResponse<unknown>;
|
|
7073
7093
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7074
7094
|
}, never, "userAuthApi">;
|
|
7095
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7075
7096
|
}) => Cohort[];
|
|
7076
7097
|
declare const selectTotalCohorts: (state: {
|
|
7077
7098
|
[x: string]: any;
|
|
@@ -7103,6 +7124,7 @@ declare const selectTotalCohorts: (state: {
|
|
|
7103
7124
|
data: Gen3FenceResponse<unknown>;
|
|
7104
7125
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7105
7126
|
}, never, "userAuthApi">;
|
|
7127
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7106
7128
|
}) => number;
|
|
7107
7129
|
declare const selectCohortById: (state: {
|
|
7108
7130
|
[x: string]: any;
|
|
@@ -7134,6 +7156,7 @@ declare const selectCohortById: (state: {
|
|
|
7134
7156
|
data: Gen3FenceResponse<unknown>;
|
|
7135
7157
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7136
7158
|
}, never, "userAuthApi">;
|
|
7159
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7137
7160
|
}, id: string) => {
|
|
7138
7161
|
filters: IndexedFilterSet;
|
|
7139
7162
|
modified?: boolean | undefined;
|
|
@@ -7174,6 +7197,7 @@ declare const selectCohortIds: (state: {
|
|
|
7174
7197
|
data: Gen3FenceResponse<unknown>;
|
|
7175
7198
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7176
7199
|
}, never, "userAuthApi">;
|
|
7200
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7177
7201
|
}) => string[];
|
|
7178
7202
|
declare const selectCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
7179
7203
|
declare const selectCurrentCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
@@ -7230,6 +7254,152 @@ declare const selectIndexFilters: (state: CoreState, index: string) => FilterSet
|
|
|
7230
7254
|
declare const defaultCohortNameGenerator: () => string;
|
|
7231
7255
|
declare const isNameUnique: <T extends CohortId = CohortId>(entities: Array<StorageEntity<T>>, name: string, excludeId?: T) => boolean;
|
|
7232
7256
|
declare const generateUniqueName: <T extends CohortId = CohortId>(entities: Array<StorageEntity<T>>, baseName: string) => string;
|
|
7257
|
+
/**
|
|
7258
|
+
* This function takes a FilterSet object and a prefix string as input.
|
|
7259
|
+
* It filters the root property of the FilterSet object and returns a
|
|
7260
|
+
* new FilterSet object that only contains filters with field names
|
|
7261
|
+
* that start with the specified prefix.
|
|
7262
|
+
*
|
|
7263
|
+
* @param fs - The FilterSet object to filter
|
|
7264
|
+
* @param prefix - The prefix to filter by
|
|
7265
|
+
* @returns - A new FilterSet object that only contains filters with field names that start with the specified prefix
|
|
7266
|
+
* @category Filters
|
|
7267
|
+
*/
|
|
7268
|
+
declare const extractFiltersWithPrefixFromFilterSet: (fs: FilterSet | undefined, prefix: string) => FilterSet;
|
|
7269
|
+
|
|
7270
|
+
declare const selectCartItem: (state: {
|
|
7271
|
+
[x: string]: any;
|
|
7272
|
+
gen3Services: any;
|
|
7273
|
+
user: Gen3UserState;
|
|
7274
|
+
gen3Apps: Gen3AppsState;
|
|
7275
|
+
drsHostnames: Record<string, string>;
|
|
7276
|
+
modals: ModalState;
|
|
7277
|
+
cohorts: {
|
|
7278
|
+
filtersExpanded: {
|
|
7279
|
+
[x: string]: Record<string, boolean>;
|
|
7280
|
+
};
|
|
7281
|
+
filtersCombineMode: {
|
|
7282
|
+
[x: string]: Record<string, CombineMode>;
|
|
7283
|
+
};
|
|
7284
|
+
sharedFilters: SharedFiltersState;
|
|
7285
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7286
|
+
};
|
|
7287
|
+
activeWorkspace: WorkspaceState;
|
|
7288
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7289
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7290
|
+
data: {};
|
|
7291
|
+
} | {
|
|
7292
|
+
data: Gen3FenceResponse<unknown>;
|
|
7293
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7294
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7295
|
+
data: {};
|
|
7296
|
+
} | {
|
|
7297
|
+
data: Gen3FenceResponse<unknown>;
|
|
7298
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7299
|
+
}, never, "userAuthApi">;
|
|
7300
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7301
|
+
}, id: string) => {
|
|
7302
|
+
[x: string]: any;
|
|
7303
|
+
id: CartItemId;
|
|
7304
|
+
};
|
|
7305
|
+
declare const selectCartItems: (state: {
|
|
7306
|
+
[x: string]: any;
|
|
7307
|
+
gen3Services: any;
|
|
7308
|
+
user: Gen3UserState;
|
|
7309
|
+
gen3Apps: Gen3AppsState;
|
|
7310
|
+
drsHostnames: Record<string, string>;
|
|
7311
|
+
modals: ModalState;
|
|
7312
|
+
cohorts: {
|
|
7313
|
+
filtersExpanded: {
|
|
7314
|
+
[x: string]: Record<string, boolean>;
|
|
7315
|
+
};
|
|
7316
|
+
filtersCombineMode: {
|
|
7317
|
+
[x: string]: Record<string, CombineMode>;
|
|
7318
|
+
};
|
|
7319
|
+
sharedFilters: SharedFiltersState;
|
|
7320
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7321
|
+
};
|
|
7322
|
+
activeWorkspace: WorkspaceState;
|
|
7323
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7324
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7325
|
+
data: {};
|
|
7326
|
+
} | {
|
|
7327
|
+
data: Gen3FenceResponse<unknown>;
|
|
7328
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7329
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7330
|
+
data: {};
|
|
7331
|
+
} | {
|
|
7332
|
+
data: Gen3FenceResponse<unknown>;
|
|
7333
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7334
|
+
}, never, "userAuthApi">;
|
|
7335
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7336
|
+
}) => string[];
|
|
7337
|
+
declare const selectCart: (state: {
|
|
7338
|
+
[x: string]: any;
|
|
7339
|
+
gen3Services: any;
|
|
7340
|
+
user: Gen3UserState;
|
|
7341
|
+
gen3Apps: Gen3AppsState;
|
|
7342
|
+
drsHostnames: Record<string, string>;
|
|
7343
|
+
modals: ModalState;
|
|
7344
|
+
cohorts: {
|
|
7345
|
+
filtersExpanded: {
|
|
7346
|
+
[x: string]: Record<string, boolean>;
|
|
7347
|
+
};
|
|
7348
|
+
filtersCombineMode: {
|
|
7349
|
+
[x: string]: Record<string, CombineMode>;
|
|
7350
|
+
};
|
|
7351
|
+
sharedFilters: SharedFiltersState;
|
|
7352
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7353
|
+
};
|
|
7354
|
+
activeWorkspace: WorkspaceState;
|
|
7355
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7356
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7357
|
+
data: {};
|
|
7358
|
+
} | {
|
|
7359
|
+
data: Gen3FenceResponse<unknown>;
|
|
7360
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7361
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7362
|
+
data: {};
|
|
7363
|
+
} | {
|
|
7364
|
+
data: Gen3FenceResponse<unknown>;
|
|
7365
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7366
|
+
}, never, "userAuthApi">;
|
|
7367
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7368
|
+
}) => CartItem[];
|
|
7369
|
+
declare const selectCartCount: (state: {
|
|
7370
|
+
[x: string]: any;
|
|
7371
|
+
gen3Services: any;
|
|
7372
|
+
user: Gen3UserState;
|
|
7373
|
+
gen3Apps: Gen3AppsState;
|
|
7374
|
+
drsHostnames: Record<string, string>;
|
|
7375
|
+
modals: ModalState;
|
|
7376
|
+
cohorts: {
|
|
7377
|
+
filtersExpanded: {
|
|
7378
|
+
[x: string]: Record<string, boolean>;
|
|
7379
|
+
};
|
|
7380
|
+
filtersCombineMode: {
|
|
7381
|
+
[x: string]: Record<string, CombineMode>;
|
|
7382
|
+
};
|
|
7383
|
+
sharedFilters: SharedFiltersState;
|
|
7384
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7385
|
+
};
|
|
7386
|
+
activeWorkspace: WorkspaceState;
|
|
7387
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7388
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7389
|
+
data: {};
|
|
7390
|
+
} | {
|
|
7391
|
+
data: Gen3FenceResponse<unknown>;
|
|
7392
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7393
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7394
|
+
data: {};
|
|
7395
|
+
} | {
|
|
7396
|
+
data: Gen3FenceResponse<unknown>;
|
|
7397
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7398
|
+
}, never, "userAuthApi">;
|
|
7399
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7400
|
+
}) => number;
|
|
7401
|
+
|
|
7402
|
+
declare const cartReducerPath = "cart";
|
|
7233
7403
|
|
|
7234
7404
|
interface CSRFToken {
|
|
7235
7405
|
readonly csrfToken: string;
|
|
@@ -8471,6 +8641,7 @@ declare const selectCSRFToken: ((state: _reduxjs_toolkit_query.RootState<{
|
|
|
8471
8641
|
data: Gen3FenceResponse<unknown>;
|
|
8472
8642
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8473
8643
|
}, never, "userAuthApi">;
|
|
8644
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8474
8645
|
}) => string | undefined) & {
|
|
8475
8646
|
clearCache: () => void;
|
|
8476
8647
|
resultsCount: () => number;
|
|
@@ -8757,6 +8928,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8757
8928
|
data: Gen3FenceResponse<unknown>;
|
|
8758
8929
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8759
8930
|
}, never, "userAuthApi">;
|
|
8931
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8760
8932
|
}) => {
|
|
8761
8933
|
'X-CSRF-Token'?: string | undefined;
|
|
8762
8934
|
Accept: string;
|
|
@@ -8848,6 +9020,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8848
9020
|
data: Gen3FenceResponse<unknown>;
|
|
8849
9021
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8850
9022
|
}, never, "userAuthApi">;
|
|
9023
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8851
9024
|
}) => string | undefined) & {
|
|
8852
9025
|
clearCache: () => void;
|
|
8853
9026
|
resultsCount: () => number;
|
|
@@ -9143,6 +9316,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9143
9316
|
data: Gen3FenceResponse<unknown>;
|
|
9144
9317
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9145
9318
|
}, never, "userAuthApi">;
|
|
9319
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9146
9320
|
}, redux.UnknownAction, Partial<{
|
|
9147
9321
|
[x: string]: any;
|
|
9148
9322
|
gen3Services: any;
|
|
@@ -9182,6 +9356,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9182
9356
|
data: Gen3FenceResponse<unknown>;
|
|
9183
9357
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9184
9358
|
}, never, "userAuthApi"> | undefined;
|
|
9359
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string> | undefined;
|
|
9185
9360
|
}>>;
|
|
9186
9361
|
type CoreState = ReturnType<typeof rootReducer>;
|
|
9187
9362
|
|
|
@@ -9222,6 +9397,7 @@ declare const useCoreSelector: react_redux.UseSelector<{
|
|
|
9222
9397
|
data: Gen3FenceResponse<unknown>;
|
|
9223
9398
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9224
9399
|
}, never, "userAuthApi">;
|
|
9400
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9225
9401
|
}>;
|
|
9226
9402
|
declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"listenerMiddleware/add">) => _reduxjs_toolkit.UnsubscribeListener) & redux_thunk.ThunkDispatch<{
|
|
9227
9403
|
[x: string]: any;
|
|
@@ -9253,6 +9429,7 @@ declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"l
|
|
|
9253
9429
|
data: Gen3FenceResponse<unknown>;
|
|
9254
9430
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9255
9431
|
}, never, "userAuthApi">;
|
|
9432
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9256
9433
|
} & {
|
|
9257
9434
|
_persist: redux_persist_es_types.PersistState;
|
|
9258
9435
|
}, undefined, redux.UnknownAction> & redux.Dispatch<redux.UnknownAction>>;
|
|
@@ -17448,5 +17625,5 @@ declare const selectPaymodelStatus: ((state: _reduxjs_toolkit_query.RootState<_r
|
|
|
17448
17625
|
declare const isWorkspaceActive: (status: WorkspaceStatus) => status is WorkspaceStatus.Launching | WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17449
17626
|
declare const isWorkspaceRunningOrStopping: (status: WorkspaceStatus) => status is WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17450
17627
|
|
|
17451
|
-
export { Accessibility, CohortStorage, CoreProvider, DAYS_IN_YEAR, DataLibraryStoreMode, EmptyFilterSet, EmptyWorkspaceStatusResponse, EnumValueExtractorHandler, ExtractValueFromObject, GEN3_API, GEN3_AUTHZ_API, GEN3_COMMONS_NAME, GEN3_CROSSWALK_API, GEN3_DOMAIN, GEN3_DOWNLOADS_ENDPOINT, GEN3_FENCE_API, GEN3_GUPPY_API, GEN3_MANIFEST_API, GEN3_MDS_API, GEN3_REDIRECT_URL, GEN3_SOWER_API, GEN3_SUBMISSION_API, GEN3_WORKSPACE_API, HTTPError, HTTPErrorMessages, HttpMethod, MissingServiceConfigurationError, Modals, PodConditionType, PodStatus, RequestedWorkspaceStatus, ToGqlHandler, ValueExtractorHandler, WorkspaceStatus, ageDisplay, appendFilterToOperation, buildGetAggregationQuery, buildGetStatsAggregationQuery, buildListItemsGroupedByDataset, buildNestedGQLFilter, calculatePercentageAsNumber, calculatePercentageAsString, capitalize, clearActiveWorkspaceId, clearCohortFilters, cohortReducer, convertFilterSetToGqlFilter, convertFilterToGqlFilter, convertGqlFilterToFilter, convertToHistogramDataAsStringKey, convertToQueryString, coreStore, createAppApiForRTKQ, createAppStore, createGen3App, createGen3AppWithOwnStore, createNewCohort, createUseCoreDataHook, customQueryStrForField, defaultCohortNameGenerator, downloadFromGuppyToBlob, downloadJSONDataFromGuppy, drsHostnamesReducer, duplicateCohort, explorerApi, explorerTags, extractEnumFilterValue, extractFieldNameFromFullFieldName, extractFileDatasetsInRecords, extractFilterValue, extractIndexAndFieldNameFromFullFieldName, extractIndexFromDataLibraryCohort, extractIndexFromFullFieldName, fetchFence, fetchFencePresignedURL, fetchJSONDataFromURL, fetchJson, fetchUserState, fieldNameToTitle, filterSetToOperation, gen3Api, generateUniqueName, getCurrentTimestamp, getFederatedLoginStatus, getGen3AppId, getNumberOfItemsInDatalist, getRemoteSupportServiceRegistry, getTimestamp, graphQLAPI, graphQLWithTags, groupSharedFields, guppyAPISliceMiddleware, guppyApi, guppyApiReducer, guppyApiSliceReducerPath, handleGqlOperation, handleOperation, hideModal, histogramQueryStrForEachField, humanify, isAdditionalDataItem, isArray, isAuthenticated, isCohortItem, isDataLibraryAPIResponse, isDatalistAPI, isErrorWithMessage, isFetchBaseQueryError, isFetchError, isFetchParseError, isFileItem, isFilterEmpty, isFilterSet, isGQLIntersection, isGQLUnion, isGuppyAggregationData, isHistogramData, isHistogramDataAArray, isHistogramDataAnEnum, isHistogramDataArray, isHistogramDataArrayARange, isHistogramDataArrayAnEnum, isHistogramDataCollection, isHistogramRangeData, isHttpStatusError, isIndexedFilterSetEmpty, isIntersection, isJSONObject, isJSONValue, isJSONValueArray, isNameUnique, isNotDefined, isObject, isOperandsType, isOperationWithField, isOperatorWithFieldAndArrayOfOperands, isPending, isProgramUrl, isRootUrl, isStatsValue, isStatsValuesArray, isString, isTimeGreaterThan, isUnion, isWorkspaceActive, isWorkspaceRunningOrStopping, listifyMethodsFromMapping, logoutFence, manifestApi, manifestTags, nestedHistogramQueryStrForEachField, prepareUrl, prependIndexToFieldName, processHistogramResponse, projectCodeFromResourcePath, queryMultipleMDSRecords, rawDataQueryStrForEachField, registerDefaultRemoteSupport, removeCohort, removeCohortFilter, requestorApi, resetUserState, resourcePathFromProjectID, roundHistogramResponse, selectActiveWorkspaceId, selectActiveWorkspaceStatus, selectAllCohortFiltersCollapsed, selectAllCohorts, selectAuthzMappingData, selectAvailableCohortByName, selectAvailableCohorts, selectCSRFToken, selectCSRFTokenData, selectCohortById, selectCohortFilterCombineMode, selectCohortFilterExpanded, selectCohortFilters, selectCohortIds, selectCurrentCohort, selectCurrentCohortFilters, selectCurrentCohortId, selectCurrentCohortModified, selectCurrentCohortName, selectCurrentCohortSaved, selectCurrentMessage, selectCurrentModal, selectGen3AppByName, selectGen3AppMetadataByName, selectHeadersWithCSRFToken, selectIndexFilters, selectIndexedFilterByName, selectPaymodelStatus, selectRequestedWorkspaceStatus, selectRequestedWorkspaceStatusTimestamp, selectSharedFilters, selectSharedFiltersForFields, selectShouldShareFilters, selectTotalCohorts, selectUser, selectUserAuthStatus, selectUserData, selectUserDetails, selectUserLoginStatus, selectWorkspaceStatus, selectWorkspaceStatusFromService, setActiveWorkspace, setActiveWorkspaceId, setActiveWorkspaceStatus, setCohortFilter, setCohortFilterCombineMode, setCohortIndexFilters, setCohortList, setCurrentCohortId, setDRSHostnames, setRequestedWorkspaceStatus, setSharedFilters, setShouldShareFilters, setupCoreStore, showModal, statsQueryStrForEachField, stringifyJSONParam, submissionApi, toggleCohortBuilderAllFilters, toggleCohortBuilderCategoryFilter, trimFirstFieldNameToTitle, updateCohortFilter, updateCohortName, useAddCohortManifestMutation, useAddFileManifestMutation, useAddMetadataManifestMutation, useAddNewCredentialMutation, useAskQuestionMutation, useAuthorizeFromCredentialsMutation, useCoreDispatch, useCoreSelector, useCreateAuthzResourceMutation, useCreateRequestMutation, useDataLibrary, useDownloadFromGuppyMutation, useFetchUserDetailsQuery, useGeneralGQLQuery, useGetAISearchStatusQuery, useGetAISearchVersionQuery, useGetAccessibleDataQuery, useGetActivePayModelQuery, useGetAggMDSQuery, useGetAggsQuery, useGetAllFieldsForTypeQuery, useGetArrayTypes, useGetAuthzMappingsQuery, useGetAuthzResourcesQuery, useGetCSRFQuery, useGetCohortManifestQuery, useGetCountsQuery, useGetCredentialsQuery, useGetCrosswalkDataQuery, useGetDataQuery, useGetDictionaryQuery, useGetDownloadQuery, useGetExternalLoginsQuery, useGetFederatedLoginStatus, useGetFieldCountSummaryQuery, useGetFieldsForIndexQuery, useGetFileFromManifestQuery, useGetFileManifestQuery, useGetIndexAggMDSQuery, useGetIndexFields, useGetJWKKeysQuery, useGetLoginProvidersQuery, useGetMDSQuery, useGetManifestServiceStatusQuery, useGetMetadataByIdQuery, useGetMetadataFromManifestQuery, useGetMetadataManifestQuery, useGetProjectsDetailsQuery, useGetProjectsQuery, useGetRawDataAndTotalCountsQuery, useGetSharedFieldsForIndexQuery, useGetSowerJobListQuery, useGetSowerJobStatusQuery, useGetSowerOutputQuery, useGetSowerServiceStatusQuery, useGetStatsAggregationsQuery, useGetStatus, useGetSubAggsQuery, useGetSubmissionGraphQLQuery, useGetSubmissionsQuery, useGetTagsQuery, useGetWorkspaceOptionsQuery, useGetWorkspacePayModelsQuery, useGetWorkspaceStatusQuery, useGraphQLQuery, useIsExternalConnectedQuery, useIsUserLoggedIn, useLaunchWorkspaceMutation, useLazyFetchUserDetailsQuery, useLazyGeneralGQLQuery, useLazyGetAggsQuery, useLazyGetAuthzMappingsQuery, useLazyGetAuthzResourcesQuery, useLazyGetCSRFQuery, useLazyGetCountsQuery, useLazyGetCrosswalkDataQuery, useLazyGetDownloadQuery, useLazyGetExternalLoginsQuery, useLazyGetManifestServiceStatusQuery, useLazyGetProjectsQuery, useLazyGetSowerJobListQuery, useLazyGetStatsAggregationsQuery, useLazyGetSubmissionGraphQLQuery, useLazyIsExternalConnectedQuery, useLazyRequestQuery, usePrevious, useRemoveCredentialMutation, useRequestByIdQuery, useRequestQuery, useRequestorStatusQuery, useSetCurrentPayModelMutation, useSubmitSowerJobMutation, useTerminateWorkspaceMutation, useUserAuth, useUserRequestQuery, userHasCreateOrUpdateOnAnyProject, userHasDataUpload, userHasMethodForServiceOnProject, userHasMethodForServiceOnResource, userHasMethodOnAnyProject, userHasSheepdogProgramAdmin, userHasSheepdogProjectAdmin };
|
|
17452
|
-
export type { APIKey, AdditionalDataItem, AggregationResponse, AggregationsData, AiSearchResponse, AllowableRange, AppDataSelectorResponse, AuthZAccess, AuthzMapping, BaseGuppyDataRequest, CSRFToken, Cohort, CohortId, CohortItem, CombineMode, Comparison, CoreDataSelector, CoreDataSelectorResponse, CoreDataValueSelector, CoreDispatch, CoreState, CoreStore, CrosswalkEntry, CrosswalkInfo, DataFetchingHook, DataFetchingResult, DataFetchingStatus, DataLibrary, DataLibraryAPI, DataLibraryAPIResponse, DataLibraryDataset, DataListUpdate, DataSetMembers, DataStatus, Datalist, DatalistAPI, DatalistAsAPIItems, DatalistBase, DatalistWithIdAPI, DatasetOrCohort, DownloadFromGuppyParams, EnumFilterValue, Equals, ExcludeIfAny, Excludes, Exists, ExportDatasetFields, ExternalProvider, FacetBucket, FacetDefinition, FacetType, FetchDataActionCreator, FetchError, FetchRequest, FileItem, FileItemAPI, FilterGroup, FilterSet, FilterValue, GQLEqual, GQLExcludeIfAny, GQLExcludes, GQLExists, GQLFilter, GQLGreaterThan, GQLGreaterThanOrEquals, GQLIncludes, GQLIntersection, GQLLessThan, GQLLessThanOrEquals, GQLMissing, GQLNestedFilter, GQLNotEqual, GQLRange, GQLUnion, Gen3FenceCredentials, Gen3FenceResponse, Gen3LoginProvider, Gen3Response, Gen3User, GqlOperationHandler, GraphQLQuery, GreaterThan, GreaterThanOrEquals, GuppyActionFunction, GuppyActionFunctionParams, GuppyActionParams, GuppyAggregationData, GuppyAggregationsResponse, GuppyDownloadActionFunctionParams, GuppyDownloadDataParams, HistogramBucket, HistogramData, HistogramDataArray, HistogramDataAsStringKey, HistogramDataCollection, HttpError, Includes, IndexAndField, IndexedFilterSet, IndexedMetadataFilters, Intersection, ItemValue, JSONArray, JSONObject, JSONValue, JWTSessionStatus, LessThan, LessThanOrEquals, LibraryListItemsAPI, LibraryListItemsGroupedByDataset, ListItem, LoginStatus, ManifestItem, MetadataPaginationParams, MetadataRequestParams, MetadataResponse, Missing, NameUrl, NamedURL, NestedFilter, NotEquals, NumericFromTo, Operation, OperationHandler, OperationWithField, OperatorWithFieldAndArrayOfOperands, PayModel, Project, ProjectDetailsParams, ProjectDetailsQueryResponse, ProjectDetailsResponse, ProjectResponse, ProjectsListRequestParams, RangeFilterValue, RawDataAndTotalCountsParams, RemoteSupportConfiguration, RemoteSupportRequestAction, RequestListQuery, RequestQueryBody, RequestorResponse, ResourceAuthzMapping, ServiceAndMethod, SetFilterValue, SharedFieldMapping, SortOption, StatValues, StatsData, StatsValuesArray, StorageEntity, StorageOperationResults, SubmissionDocument, SubmissionGraphqlParams, SubmissionGraphqlResponse, SubmissionInfo, TablePageOffsetProps, Union, UnionOrIntersection, UnknownJson, UpdateDataLibraryListParams, UseAppDataHook, UseAppDataResponse, UseCoreDataHook, UseCoreDataResponse, UserProfile, WorkspaceContainerState, WorkspaceId, WorkspaceInfo, WorkspaceInfoResponse, WorkspaceOptions, WorkspaceOptionsResponse, WorkspacePayModelResponse, WorkspacePodCondition, WorkspaceStatusResponse, guppyApiResponse, guppyApiSliceRequest, guppyFetchError };
|
|
17628
|
+
export { Accessibility, CART_LIMIT, CohortStorage, CoreProvider, DAYS_IN_YEAR, DataLibraryStoreMode, EmptyFilterSet, EmptyWorkspaceStatusResponse, EnumValueExtractorHandler, ExtractValueFromObject, GEN3_API, GEN3_AUTHZ_API, GEN3_COMMONS_NAME, GEN3_CROSSWALK_API, GEN3_DOMAIN, GEN3_DOWNLOADS_ENDPOINT, GEN3_FENCE_API, GEN3_GUPPY_API, GEN3_MANIFEST_API, GEN3_MDS_API, GEN3_REDIRECT_URL, GEN3_SOWER_API, GEN3_SUBMISSION_API, GEN3_WORKSPACE_API, HTTPError, HTTPErrorMessages, HttpMethod, MissingServiceConfigurationError, Modals, PodConditionType, PodStatus, RequestedWorkspaceStatus, ToGqlHandler, ValueExtractorHandler, WorkspaceStatus, addItemsToCart, ageDisplay, appendFilterToOperation, buildGetAggregationQuery, buildGetStatsAggregationQuery, buildListItemsGroupedByDataset, buildNestedGQLFilter, calculatePercentageAsNumber, calculatePercentageAsString, capitalize, cartReducer, cartReducerPath, clearActiveWorkspaceId, clearCohortFilters, cohortReducer, convertFilterSetToGqlFilter, convertFilterToGqlFilter, convertGqlFilterToFilter, convertToHistogramDataAsStringKey, convertToQueryString, coreStore, createAppApiForRTKQ, createAppStore, createGen3App, createGen3AppWithOwnStore, createNewCohort, createUseCoreDataHook, customQueryStrForField, defaultCohortNameGenerator, downloadFromGuppyToBlob, downloadJSONDataFromGuppy, drsHostnamesReducer, duplicateCohort, explorerApi, explorerTags, extractEnumFilterValue, extractFieldNameFromFullFieldName, extractFileDatasetsInRecords, extractFilterValue, extractFiltersWithPrefixFromFilterSet, extractIndexAndFieldNameFromFullFieldName, extractIndexFromDataLibraryCohort, extractIndexFromFullFieldName, fetchFence, fetchFencePresignedURL, fetchJSONDataFromURL, fetchJson, fetchUserState, fieldNameToTitle, filterSetToOperation, gen3Api, generateUniqueName, getCurrentTimestamp, getFederatedLoginStatus, getGen3AppId, getNumberOfItemsInDatalist, getRemoteSupportServiceRegistry, getTimestamp, graphQLAPI, graphQLWithTags, groupSharedFields, guppyAPISliceMiddleware, guppyApi, guppyApiReducer, guppyApiSliceReducerPath, handleGqlOperation, handleOperation, hideModal, histogramQueryStrForEachField, humanify, isAdditionalDataItem, isArray, isAuthenticated, isCohortItem, isDataLibraryAPIResponse, isDatalistAPI, isErrorWithMessage, isFetchBaseQueryError, isFetchError, isFetchParseError, isFileItem, isFilterEmpty, isFilterSet, isGQLIntersection, isGQLUnion, isGuppyAggregationData, isHistogramData, isHistogramDataAArray, isHistogramDataAnEnum, isHistogramDataArray, isHistogramDataArrayARange, isHistogramDataArrayAnEnum, isHistogramDataCollection, isHistogramRangeData, isHttpStatusError, isIndexedFilterSetEmpty, isIntersection, isIntersectionOrUnion, isJSONObject, isJSONValue, isJSONValueArray, isNameUnique, isNestedFilter, isNotDefined, isObject, isOperandsType, isOperationWithField, isOperatorWithFieldAndArrayOfOperands, isPending, isProgramUrl, isRootUrl, isStatsValue, isStatsValuesArray, isString, isTimeGreaterThan, isUnion, isWorkspaceActive, isWorkspaceRunningOrStopping, listifyMethodsFromMapping, logoutFence, manifestApi, manifestTags, nestedHistogramQueryStrForEachField, prepareUrl, prependIndexToFieldName, processHistogramResponse, projectCodeFromResourcePath, queryMultipleMDSRecords, rawDataQueryStrForEachField, registerDefaultRemoteSupport, removeCohort, removeCohortFilter, removeItemsFromCart, requestorApi, resetUserState, resourcePathFromProjectID, roundHistogramResponse, selectActiveWorkspaceId, selectActiveWorkspaceStatus, selectAllCohortFiltersCollapsed, selectAllCohorts, selectAuthzMappingData, selectAvailableCohortByName, selectAvailableCohorts, selectCSRFToken, selectCSRFTokenData, selectCart, selectCartCount, selectCartItem, selectCartItems, selectCohortById, selectCohortFilterCombineMode, selectCohortFilterExpanded, selectCohortFilters, selectCohortIds, selectCurrentCohort, selectCurrentCohortFilters, selectCurrentCohortId, selectCurrentCohortModified, selectCurrentCohortName, selectCurrentCohortSaved, selectCurrentMessage, selectCurrentModal, selectGen3AppByName, selectGen3AppMetadataByName, selectHeadersWithCSRFToken, selectIndexFilters, selectIndexedFilterByName, selectPaymodelStatus, selectRequestedWorkspaceStatus, selectRequestedWorkspaceStatusTimestamp, selectSharedFilters, selectSharedFiltersForFields, selectShouldShareFilters, selectTotalCohorts, selectUser, selectUserAuthStatus, selectUserData, selectUserDetails, selectUserLoginStatus, selectWorkspaceStatus, selectWorkspaceStatusFromService, setActiveWorkspace, setActiveWorkspaceId, setActiveWorkspaceStatus, setCohortFilter, setCohortFilterCombineMode, setCohortIndexFilters, setCohortList, setCurrentCohortId, setDRSHostnames, setRequestedWorkspaceStatus, setSharedFilters, setShouldShareFilters, setupCoreStore, showModal, statsQueryStrForEachField, stringifyJSONParam, submissionApi, toggleCohortBuilderAllFilters, toggleCohortBuilderCategoryFilter, trimFirstFieldNameToTitle, updateCohortFilter, updateCohortName, useAddCohortManifestMutation, useAddFileManifestMutation, useAddMetadataManifestMutation, useAddNewCredentialMutation, useAskQuestionMutation, useAuthorizeFromCredentialsMutation, useCoreDispatch, useCoreSelector, useCreateAuthzResourceMutation, useCreateRequestMutation, useDataLibrary, useDownloadFromGuppyMutation, useFetchUserDetailsQuery, useGeneralGQLQuery, useGetAISearchStatusQuery, useGetAISearchVersionQuery, useGetAccessibleDataQuery, useGetActivePayModelQuery, useGetAggMDSQuery, useGetAggsQuery, useGetAllFieldsForTypeQuery, useGetArrayTypes, useGetAuthzMappingsQuery, useGetAuthzResourcesQuery, useGetCSRFQuery, useGetCohortManifestQuery, useGetCountsQuery, useGetCredentialsQuery, useGetCrosswalkDataQuery, useGetDataQuery, useGetDictionaryQuery, useGetDownloadQuery, useGetExternalLoginsQuery, useGetFederatedLoginStatus, useGetFieldCountSummaryQuery, useGetFieldsForIndexQuery, useGetFileFromManifestQuery, useGetFileManifestQuery, useGetIndexAggMDSQuery, useGetIndexFields, useGetJWKKeysQuery, useGetLoginProvidersQuery, useGetMDSQuery, useGetManifestServiceStatusQuery, useGetMetadataByIdQuery, useGetMetadataFromManifestQuery, useGetMetadataManifestQuery, useGetProjectsDetailsQuery, useGetProjectsQuery, useGetRawDataAndTotalCountsQuery, useGetSharedFieldsForIndexQuery, useGetSowerJobListQuery, useGetSowerJobStatusQuery, useGetSowerOutputQuery, useGetSowerServiceStatusQuery, useGetStatsAggregationsQuery, useGetStatus, useGetSubAggsQuery, useGetSubmissionGraphQLQuery, useGetSubmissionsQuery, useGetTagsQuery, useGetWorkspaceOptionsQuery, useGetWorkspacePayModelsQuery, useGetWorkspaceStatusQuery, useGraphQLQuery, useIsExternalConnectedQuery, useIsUserLoggedIn, useLaunchWorkspaceMutation, useLazyFetchUserDetailsQuery, useLazyGeneralGQLQuery, useLazyGetAggsQuery, useLazyGetAuthzMappingsQuery, useLazyGetAuthzResourcesQuery, useLazyGetCSRFQuery, useLazyGetCountsQuery, useLazyGetCrosswalkDataQuery, useLazyGetDownloadQuery, useLazyGetExternalLoginsQuery, useLazyGetManifestServiceStatusQuery, useLazyGetProjectsQuery, useLazyGetSowerJobListQuery, useLazyGetStatsAggregationsQuery, useLazyGetSubmissionGraphQLQuery, useLazyIsExternalConnectedQuery, useLazyRequestQuery, usePrevious, useRemoveCredentialMutation, useRequestByIdQuery, useRequestQuery, useRequestorStatusQuery, useSetCurrentPayModelMutation, useSubmitSowerJobMutation, useTerminateWorkspaceMutation, useUserAuth, useUserRequestQuery, userHasCreateOrUpdateOnAnyProject, userHasDataUpload, userHasMethodForServiceOnProject, userHasMethodForServiceOnResource, userHasMethodOnAnyProject, userHasSheepdogProgramAdmin, userHasSheepdogProjectAdmin };
|
|
17629
|
+
export type { APIKey, AdditionalDataItem, AggregationResponse, AggregationsData, AiSearchResponse, AllowableRange, AppDataSelectorResponse, AuthZAccess, AuthzMapping, BaseGuppyDataRequest, CSRFToken, CartItem, Cohort, CohortId, CohortItem, CombineMode, Comparison, CoreDataSelector, CoreDataSelectorResponse, CoreDataValueSelector, CoreDispatch, CoreState, CoreStore, CrosswalkEntry, CrosswalkInfo, DataFetchingHook, DataFetchingResult, DataFetchingStatus, DataLibrary, DataLibraryAPI, DataLibraryAPIResponse, DataLibraryDataset, DataListUpdate, DataSetMembers, DataStatus, Datalist, DatalistAPI, DatalistAsAPIItems, DatalistBase, DatalistWithIdAPI, DatasetOrCohort, DownloadFromGuppyParams, EnumFilterValue, Equals, ExcludeIfAny, Excludes, Exists, ExportDatasetFields, ExternalProvider, FacetBucket, FacetDefinition, FacetType, FetchDataActionCreator, FetchError, FetchRequest, FileItem, FileItemAPI, FilterGroup, FilterSet, FilterValue, GQLEqual, GQLExcludeIfAny, GQLExcludes, GQLExists, GQLFilter, GQLGreaterThan, GQLGreaterThanOrEquals, GQLIncludes, GQLIntersection, GQLLessThan, GQLLessThanOrEquals, GQLMissing, GQLNestedFilter, GQLNotEqual, GQLRange, GQLUnion, Gen3FenceCredentials, Gen3FenceResponse, Gen3LoginProvider, Gen3Response, Gen3User, GqlOperationHandler, GraphQLQuery, GreaterThan, GreaterThanOrEquals, GuppyActionFunction, GuppyActionFunctionParams, GuppyActionParams, GuppyAggregationData, GuppyAggregationsResponse, GuppyDownloadActionFunctionParams, GuppyDownloadDataParams, HistogramBucket, HistogramData, HistogramDataArray, HistogramDataAsStringKey, HistogramDataCollection, HttpError, Includes, IndexAndField, IndexedFilterSet, IndexedMetadataFilters, Intersection, ItemValue, JSONArray, JSONObject, JSONValue, JWTSessionStatus, LessThan, LessThanOrEquals, LibraryListItemsAPI, LibraryListItemsGroupedByDataset, ListItem, LoginStatus, ManifestItem, MetadataPaginationParams, MetadataRequestParams, MetadataResponse, Missing, NameUrl, NamedURL, NestedFilter, NotEquals, NumericFromTo, Operation, OperationHandler, OperationWithField, OperatorWithFieldAndArrayOfOperands, PayModel, Project, ProjectDetailsParams, ProjectDetailsQueryResponse, ProjectDetailsResponse, ProjectResponse, ProjectsListRequestParams, RangeFilterValue, RawDataAndTotalCountsParams, RemoteSupportConfiguration, RemoteSupportRequestAction, RequestListQuery, RequestQueryBody, RequestorResponse, ResourceAuthzMapping, ServiceAndMethod, SetFilterValue, SharedFieldMapping, SortOption, StatValues, StatsData, StatsValuesArray, StorageEntity, StorageOperationResults, SubmissionDocument, SubmissionGraphqlParams, SubmissionGraphqlResponse, SubmissionInfo, TablePageOffsetProps, Union, UnionOrIntersection, UnknownJson, UpdateDataLibraryListParams, UseAppDataHook, UseAppDataResponse, UseCoreDataHook, UseCoreDataResponse, UserProfile, WorkspaceContainerState, WorkspaceId, WorkspaceInfo, WorkspaceInfoResponse, WorkspaceOptions, WorkspaceOptionsResponse, WorkspacePayModelResponse, WorkspacePodCondition, WorkspaceStatusResponse, guppyApiResponse, guppyApiSliceRequest, guppyFetchError };
|