@gen3/core 0.11.32 → 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 +887 -672
- 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/filters.d.ts +14 -0
- package/dist/dts/features/filters/filters.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/guppy/guppyApi.d.ts.map +1 -1
- package/dist/dts/features/guppy/guppySlice.d.ts +0 -4
- package/dist/dts/features/guppy/guppySlice.d.ts.map +1 -1
- package/dist/dts/features/guppy/index.d.ts +6 -0
- package/dist/dts/features/guppy/index.d.ts.map +1 -1
- package/dist/dts/features/guppy/queryGenerators.d.ts +6 -0
- package/dist/dts/features/guppy/queryGenerators.d.ts.map +1 -0
- package/dist/dts/features/guppy/tests/queryGenerators.unit.test.d.ts +2 -0
- package/dist/dts/features/guppy/tests/queryGenerators.unit.test.d.ts.map +1 -0
- package/dist/dts/features/guppy/utils.d.ts +1 -1
- package/dist/dts/features/guppy/utils.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/dts/utils/conversions.d.ts +7 -0
- package/dist/dts/utils/conversions.d.ts.map +1 -1
- package/dist/dts/utils/extractvalues.d.ts +1 -0
- package/dist/dts/utils/extractvalues.d.ts.map +1 -1
- package/dist/dts/utils/index.d.ts +3 -2
- package/dist/dts/utils/index.d.ts.map +1 -1
- package/dist/esm/index.js +868 -673
- 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 +420 -199
- 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;
|
|
@@ -2783,6 +2799,20 @@ declare class EnumValueExtractorHandler implements OperationHandler<EnumFilterVa
|
|
|
2783
2799
|
}
|
|
2784
2800
|
declare const appendFilterToOperation: (filter: Intersection | Union | undefined, addition: Intersection | Union | undefined) => Intersection | Union;
|
|
2785
2801
|
declare const filterSetToOperation: (fs: FilterSet | undefined) => Operation | undefined;
|
|
2802
|
+
/**
|
|
2803
|
+
* Constructs a nested operation object based on the provided field and leaf operand.
|
|
2804
|
+
* If the field does not contain a dot '.', it either assigns the field to the leaf operand (if applicable)
|
|
2805
|
+
* or returns the leaf operand as is. When the field contains dots, it splits the field into parts,
|
|
2806
|
+
* creates a "nested" operation for the root field, and recursively constructs the nested structure
|
|
2807
|
+
* for the remaining portion of the field.
|
|
2808
|
+
*
|
|
2809
|
+
* @param {string} field - The hierarchical field path, with segments separated by dots (e.g., "root.child").
|
|
2810
|
+
* @param {Operation} leafOperand - The operation to be nested within the specified path.
|
|
2811
|
+
* @param parentPath - The parent path of the current field. Guppy nested filters require a parent path.
|
|
2812
|
+
* @param depth
|
|
2813
|
+
* @returns {Operation} A nested operation object that represents the structured path and operand.
|
|
2814
|
+
*/
|
|
2815
|
+
declare const buildNestedGQLFilter: (field: string, leafOperand: GQLFilter, parentPath?: string | undefined) => GQLFilter;
|
|
2786
2816
|
|
|
2787
2817
|
declare const trimFirstFieldNameToTitle: (fieldName: string, trim?: boolean) => string;
|
|
2788
2818
|
/**
|
|
@@ -3006,10 +3036,6 @@ declare const explorerApi: _reduxjs_toolkit_query.Api<(query: guppyApiSliceReque
|
|
|
3006
3036
|
data?: undefined;
|
|
3007
3037
|
}>, "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", Record<string, unknown>, "guppy", any>;
|
|
3008
3038
|
}, "guppy", "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
|
|
3009
|
-
declare const histogramQueryStrForEachField: (field: string) => string;
|
|
3010
|
-
declare const statsQueryStrForEachField: (field: string) => string;
|
|
3011
|
-
declare const nestedHistogramQueryStrForEachField: (mainField: string, numericAggAsText: boolean) => string;
|
|
3012
|
-
declare const rawDataQueryStrForEachField: (field: string) => string;
|
|
3013
3039
|
declare const useGetArrayTypes: () => JSONValue;
|
|
3014
3040
|
declare const useGetIndexFields: (index: string) => any;
|
|
3015
3041
|
declare const buildGetAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean, queryId?: string | undefined) => GraphQLQuery;
|
|
@@ -5836,6 +5862,12 @@ declare const useLazyGeneralGQLQuery: <R extends Record<string, any> = _reduxjs_
|
|
|
5836
5862
|
lastArg: guppyApiSliceRequest;
|
|
5837
5863
|
}];
|
|
5838
5864
|
|
|
5865
|
+
declare const customQueryStrForField: (field: string, query: string, depth?: number) => string;
|
|
5866
|
+
declare const histogramQueryStrForEachField: (field: string) => string;
|
|
5867
|
+
declare const statsQueryStrForEachField: (field: string) => string;
|
|
5868
|
+
declare const nestedHistogramQueryStrForEachField: (mainField: string, numericAggAsText: boolean) => string;
|
|
5869
|
+
declare const rawDataQueryStrForEachField: (field: string) => string;
|
|
5870
|
+
|
|
5839
5871
|
/**
|
|
5840
5872
|
* Downloads a file from Guppy using the provided parameters.
|
|
5841
5873
|
* It will optionally convert the data to the specified format.
|
|
@@ -6046,8 +6078,37 @@ declare const selectSharedFiltersForFields: (state: CoreState, field: string) =>
|
|
|
6046
6078
|
declare const setShouldShareFilters: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "cohortSharedFilters/setShouldShareFilters">;
|
|
6047
6079
|
declare const setSharedFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SharedFieldMapping, "cohortSharedFilters/setSharedFilters">;
|
|
6048
6080
|
|
|
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;
|
|
6087
|
+
}
|
|
6049
6088
|
/**
|
|
6050
|
-
*
|
|
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.
|
|
6051
6112
|
* This slice is used to control the display of standard Gen3 modals.
|
|
6052
6113
|
* and can be extended to add custom modals by representing them as strings.
|
|
6053
6114
|
*/
|
|
@@ -6085,6 +6146,53 @@ type EntityType = 'case' | 'gene' | 'ssm' | 'cnv' | 'file';
|
|
|
6085
6146
|
declare const selectGen3AppMetadataByName: (state: CoreState, appName: string) => Gen3AppMetadata;
|
|
6086
6147
|
declare const selectGen3AppByName: (appName: string) => React__default.ReactNode;
|
|
6087
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
|
+
|
|
6088
6196
|
/**
|
|
6089
6197
|
* Update declaration of persistReducer to support redux v5
|
|
6090
6198
|
*/
|
|
@@ -6125,6 +6233,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6125
6233
|
data: Gen3FenceResponse<unknown>;
|
|
6126
6234
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6127
6235
|
}, never, "userAuthApi">;
|
|
6236
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6128
6237
|
} & {
|
|
6129
6238
|
_persist: PersistState;
|
|
6130
6239
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6158,6 +6267,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6158
6267
|
data: Gen3FenceResponse<unknown>;
|
|
6159
6268
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6160
6269
|
}, never, "userAuthApi">;
|
|
6270
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6161
6271
|
} & {
|
|
6162
6272
|
_persist: PersistState;
|
|
6163
6273
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6192,6 +6302,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6192
6302
|
data: Gen3FenceResponse<unknown>;
|
|
6193
6303
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6194
6304
|
}, never, "userAuthApi">;
|
|
6305
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6195
6306
|
} & {
|
|
6196
6307
|
_persist: PersistState;
|
|
6197
6308
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6225,6 +6336,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6225
6336
|
data: Gen3FenceResponse<unknown>;
|
|
6226
6337
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6227
6338
|
}, never, "userAuthApi">;
|
|
6339
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6228
6340
|
} & {
|
|
6229
6341
|
_persist: PersistState;
|
|
6230
6342
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6863,82 +6975,6 @@ declare const useGetFederatedLoginStatus: ({ selectedFiles, }: FederatedLoginSta
|
|
|
6863
6975
|
};
|
|
6864
6976
|
declare const getFederatedLoginStatus: (selectedFiles: ReadonlyArray<FileMetadata>) => Promise<ExternalLoginStatus>;
|
|
6865
6977
|
|
|
6866
|
-
type CombineMode = 'and' | 'or';
|
|
6867
|
-
type CohortId = string;
|
|
6868
|
-
type CountsData = Record<string, number>;
|
|
6869
|
-
interface StorageEntity<T> {
|
|
6870
|
-
id: T;
|
|
6871
|
-
name: string;
|
|
6872
|
-
}
|
|
6873
|
-
/**
|
|
6874
|
-
* A Cohort is a collection of filters that can be used to query the GDC API.
|
|
6875
|
-
* The cohort interface is used to manage the cohort state in the redux-toolkit entity adapter.
|
|
6876
|
-
* @see https://redux-toolkit.js.org/api/createEntityAdapter
|
|
6877
|
-
*
|
|
6878
|
-
* @property id - the id of the cohort
|
|
6879
|
-
* @property name - the name of the cohort
|
|
6880
|
-
* @property filters - the filters for the cohort
|
|
6881
|
-
* @property modified - flag indicating if the cohort has been modified
|
|
6882
|
-
* @property modifiedDatetime - the last time the cohort was modified
|
|
6883
|
-
* @property saved - flag indicating if the cohort has been saved
|
|
6884
|
-
* @category Cohort
|
|
6885
|
-
*/
|
|
6886
|
-
interface Cohort extends StorageEntity<CohortId> {
|
|
6887
|
-
filters: IndexedFilterSet;
|
|
6888
|
-
modified?: boolean;
|
|
6889
|
-
createdDatetime: string;
|
|
6890
|
-
modifiedDatetime: string;
|
|
6891
|
-
saved?: boolean;
|
|
6892
|
-
counts?: CountsData;
|
|
6893
|
-
}
|
|
6894
|
-
|
|
6895
|
-
interface CurrentCohortState {
|
|
6896
|
-
currentCohortId: string;
|
|
6897
|
-
message?: string[];
|
|
6898
|
-
}
|
|
6899
|
-
interface UpdateFilterParams {
|
|
6900
|
-
index: string;
|
|
6901
|
-
field: string;
|
|
6902
|
-
filter: Operation;
|
|
6903
|
-
}
|
|
6904
|
-
interface SetFilterParams {
|
|
6905
|
-
index: string;
|
|
6906
|
-
filters: FilterSet;
|
|
6907
|
-
}
|
|
6908
|
-
interface SetAllIndexFiltersParams {
|
|
6909
|
-
filters: IndexedFilterSet;
|
|
6910
|
-
}
|
|
6911
|
-
interface RemoveFilterParams {
|
|
6912
|
-
index: string;
|
|
6913
|
-
field: string;
|
|
6914
|
-
}
|
|
6915
|
-
interface ClearAllFilterParams {
|
|
6916
|
-
index: string;
|
|
6917
|
-
}
|
|
6918
|
-
interface CreateCohortParams {
|
|
6919
|
-
name?: string;
|
|
6920
|
-
filters?: IndexedFilterSet;
|
|
6921
|
-
}
|
|
6922
|
-
interface UpdateCohortNameParams {
|
|
6923
|
-
id: string;
|
|
6924
|
-
name: string;
|
|
6925
|
-
}
|
|
6926
|
-
declare const createNewCohort: _reduxjs_toolkit.ActionCreatorWithPayload<CreateCohortParams, "cohort/createNewCohort">;
|
|
6927
|
-
declare const updateCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateFilterParams, "cohort/updateCohortFilter">;
|
|
6928
|
-
declare const setCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<SetFilterParams, "cohort/setCohortFilter">;
|
|
6929
|
-
declare const setCohortIndexFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SetAllIndexFiltersParams, "cohort/setCohortIndexFilters">;
|
|
6930
|
-
declare const duplicateCohort: _reduxjs_toolkit.ActionCreatorWithoutPayload<"cohort/duplicateCohort">;
|
|
6931
|
-
declare const removeCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<RemoveFilterParams, "cohort/removeCohortFilter">;
|
|
6932
|
-
declare const clearCohortFilters: _reduxjs_toolkit.ActionCreatorWithPayload<ClearAllFilterParams, "cohort/clearCohortFilters">;
|
|
6933
|
-
declare const removeCohort: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6934
|
-
shouldShowMessage?: boolean;
|
|
6935
|
-
id: string;
|
|
6936
|
-
}, "cohort/removeCohort">;
|
|
6937
|
-
declare const setCurrentCohortId: _reduxjs_toolkit.ActionCreatorWithPayload<string, "cohort/setCurrentCohortId">;
|
|
6938
|
-
declare const updateCohortName: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateCohortNameParams, "cohort/updateCohortName">;
|
|
6939
|
-
declare const setCohortList: _reduxjs_toolkit.ActionCreatorWithPayload<Cohort[], "cohort/setCohortList">;
|
|
6940
|
-
declare const cohortReducer: redux.Reducer<EntityState<Cohort, string> & CurrentCohortState>;
|
|
6941
|
-
|
|
6942
6978
|
declare const toggleCohortBuilderCategoryFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6943
6979
|
index: string;
|
|
6944
6980
|
field: string;
|
|
@@ -7056,6 +7092,7 @@ declare const selectAllCohorts: (state: {
|
|
|
7056
7092
|
data: Gen3FenceResponse<unknown>;
|
|
7057
7093
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7058
7094
|
}, never, "userAuthApi">;
|
|
7095
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7059
7096
|
}) => Cohort[];
|
|
7060
7097
|
declare const selectTotalCohorts: (state: {
|
|
7061
7098
|
[x: string]: any;
|
|
@@ -7087,6 +7124,7 @@ declare const selectTotalCohorts: (state: {
|
|
|
7087
7124
|
data: Gen3FenceResponse<unknown>;
|
|
7088
7125
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7089
7126
|
}, never, "userAuthApi">;
|
|
7127
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7090
7128
|
}) => number;
|
|
7091
7129
|
declare const selectCohortById: (state: {
|
|
7092
7130
|
[x: string]: any;
|
|
@@ -7118,6 +7156,7 @@ declare const selectCohortById: (state: {
|
|
|
7118
7156
|
data: Gen3FenceResponse<unknown>;
|
|
7119
7157
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7120
7158
|
}, never, "userAuthApi">;
|
|
7159
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7121
7160
|
}, id: string) => {
|
|
7122
7161
|
filters: IndexedFilterSet;
|
|
7123
7162
|
modified?: boolean | undefined;
|
|
@@ -7158,6 +7197,7 @@ declare const selectCohortIds: (state: {
|
|
|
7158
7197
|
data: Gen3FenceResponse<unknown>;
|
|
7159
7198
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7160
7199
|
}, never, "userAuthApi">;
|
|
7200
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7161
7201
|
}) => string[];
|
|
7162
7202
|
declare const selectCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
7163
7203
|
declare const selectCurrentCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
@@ -7214,6 +7254,152 @@ declare const selectIndexFilters: (state: CoreState, index: string) => FilterSet
|
|
|
7214
7254
|
declare const defaultCohortNameGenerator: () => string;
|
|
7215
7255
|
declare const isNameUnique: <T extends CohortId = CohortId>(entities: Array<StorageEntity<T>>, name: string, excludeId?: T) => boolean;
|
|
7216
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";
|
|
7217
7403
|
|
|
7218
7404
|
interface CSRFToken {
|
|
7219
7405
|
readonly csrfToken: string;
|
|
@@ -8455,6 +8641,7 @@ declare const selectCSRFToken: ((state: _reduxjs_toolkit_query.RootState<{
|
|
|
8455
8641
|
data: Gen3FenceResponse<unknown>;
|
|
8456
8642
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8457
8643
|
}, never, "userAuthApi">;
|
|
8644
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8458
8645
|
}) => string | undefined) & {
|
|
8459
8646
|
clearCache: () => void;
|
|
8460
8647
|
resultsCount: () => number;
|
|
@@ -8741,6 +8928,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8741
8928
|
data: Gen3FenceResponse<unknown>;
|
|
8742
8929
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8743
8930
|
}, never, "userAuthApi">;
|
|
8931
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8744
8932
|
}) => {
|
|
8745
8933
|
'X-CSRF-Token'?: string | undefined;
|
|
8746
8934
|
Accept: string;
|
|
@@ -8832,6 +9020,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8832
9020
|
data: Gen3FenceResponse<unknown>;
|
|
8833
9021
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8834
9022
|
}, never, "userAuthApi">;
|
|
9023
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8835
9024
|
}) => string | undefined) & {
|
|
8836
9025
|
clearCache: () => void;
|
|
8837
9026
|
resultsCount: () => number;
|
|
@@ -9127,6 +9316,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9127
9316
|
data: Gen3FenceResponse<unknown>;
|
|
9128
9317
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9129
9318
|
}, never, "userAuthApi">;
|
|
9319
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9130
9320
|
}, redux.UnknownAction, Partial<{
|
|
9131
9321
|
[x: string]: any;
|
|
9132
9322
|
gen3Services: any;
|
|
@@ -9166,6 +9356,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9166
9356
|
data: Gen3FenceResponse<unknown>;
|
|
9167
9357
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9168
9358
|
}, never, "userAuthApi"> | undefined;
|
|
9359
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string> | undefined;
|
|
9169
9360
|
}>>;
|
|
9170
9361
|
type CoreState = ReturnType<typeof rootReducer>;
|
|
9171
9362
|
|
|
@@ -9206,6 +9397,7 @@ declare const useCoreSelector: react_redux.UseSelector<{
|
|
|
9206
9397
|
data: Gen3FenceResponse<unknown>;
|
|
9207
9398
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9208
9399
|
}, never, "userAuthApi">;
|
|
9400
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9209
9401
|
}>;
|
|
9210
9402
|
declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"listenerMiddleware/add">) => _reduxjs_toolkit.UnsubscribeListener) & redux_thunk.ThunkDispatch<{
|
|
9211
9403
|
[x: string]: any;
|
|
@@ -9237,6 +9429,7 @@ declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"l
|
|
|
9237
9429
|
data: Gen3FenceResponse<unknown>;
|
|
9238
9430
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9239
9431
|
}, never, "userAuthApi">;
|
|
9432
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9240
9433
|
} & {
|
|
9241
9434
|
_persist: redux_persist_es_types.PersistState;
|
|
9242
9435
|
}, undefined, redux.UnknownAction> & redux.Dispatch<redux.UnknownAction>>;
|
|
@@ -9301,6 +9494,9 @@ declare const getCurrentTimestamp: () => number;
|
|
|
9301
9494
|
declare const isTimeGreaterThan: (startTime: number, minutes: number) => boolean;
|
|
9302
9495
|
declare const getTimestamp: () => string;
|
|
9303
9496
|
|
|
9497
|
+
declare const ExtractValueFromObject: <T = any>(obj: Record<string, T> | null | undefined, key: string, valueIfNotFound: T) => T;
|
|
9498
|
+
|
|
9499
|
+
declare const DAYS_IN_YEAR = 365.25;
|
|
9304
9500
|
/**
|
|
9305
9501
|
* Converts HistogramData to HistogramDataAsStringKey by ensuring the key is a string.
|
|
9306
9502
|
* If the key is already a string, it's used as is.
|
|
@@ -9312,6 +9508,31 @@ declare const getTimestamp: () => string;
|
|
|
9312
9508
|
declare const convertToHistogramDataAsStringKey: (data: HistogramData) => HistogramDataAsStringKey;
|
|
9313
9509
|
declare const calculatePercentageAsNumber: (count: number, total: number) => number;
|
|
9314
9510
|
declare const calculatePercentageAsString: (count: number, total: number) => string;
|
|
9511
|
+
declare const capitalize: (original: string) => string;
|
|
9512
|
+
interface HumanifyParams {
|
|
9513
|
+
term: string;
|
|
9514
|
+
capitalize?: boolean;
|
|
9515
|
+
facetTerm?: boolean;
|
|
9516
|
+
}
|
|
9517
|
+
declare const humanify: ({ term, capitalize: cap, facetTerm, }: HumanifyParams) => string;
|
|
9518
|
+
/**
|
|
9519
|
+
* Converts age in days into a human-readable format.
|
|
9520
|
+
*
|
|
9521
|
+
* @param ageInDays - The age in days.
|
|
9522
|
+
* @param yearsOnly - If true, only display years.
|
|
9523
|
+
* @defaultValue false
|
|
9524
|
+
* @param defaultValue - The default value to return if ageInDays is falsy.
|
|
9525
|
+
* @defaultValue "--"
|
|
9526
|
+
* @returns The formatted age string.
|
|
9527
|
+
*/
|
|
9528
|
+
declare const ageDisplay: (ageInDays: number, yearsOnly?: boolean, defaultValue?: string) => string;
|
|
9529
|
+
/**
|
|
9530
|
+
* Given an object of JSON, stringify it into a string.
|
|
9531
|
+
* @param obj - the object to stringify
|
|
9532
|
+
* @param defaults - the default value to return if the object is undefined
|
|
9533
|
+
* @category Utility
|
|
9534
|
+
*/
|
|
9535
|
+
declare const stringifyJSONParam: (obj?: Record<string, any>, defaults?: string) => string;
|
|
9315
9536
|
|
|
9316
9537
|
declare const CoreProvider: React__default.FC<Record<string, unknown>>;
|
|
9317
9538
|
|
|
@@ -17404,5 +17625,5 @@ declare const selectPaymodelStatus: ((state: _reduxjs_toolkit_query.RootState<_r
|
|
|
17404
17625
|
declare const isWorkspaceActive: (status: WorkspaceStatus) => status is WorkspaceStatus.Launching | WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17405
17626
|
declare const isWorkspaceRunningOrStopping: (status: WorkspaceStatus) => status is WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17406
17627
|
|
|
17407
|
-
export { Accessibility, CohortStorage, CoreProvider, DataLibraryStoreMode, EmptyFilterSet, EmptyWorkspaceStatusResponse, EnumValueExtractorHandler, 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, appendFilterToOperation, buildGetAggregationQuery, buildGetStatsAggregationQuery, buildListItemsGroupedByDataset, calculatePercentageAsNumber, calculatePercentageAsString, clearActiveWorkspaceId, clearCohortFilters, cohortReducer, convertFilterSetToGqlFilter, convertFilterToGqlFilter, convertGqlFilterToFilter, convertToHistogramDataAsStringKey, convertToQueryString, coreStore, createAppApiForRTKQ, createAppStore, createGen3App, createGen3AppWithOwnStore, createNewCohort, createUseCoreDataHook, 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, 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, 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 };
|
|
17408
|
-
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 };
|