@gen3/core 0.11.33 → 0.11.35
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 +782 -710
- 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/guppy/guppySlice.d.ts +61 -14
- package/dist/dts/features/guppy/guppySlice.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 +771 -711
- 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 +433 -209
- 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;
|
|
@@ -2879,16 +2895,19 @@ interface RawDataAndTotalCountsParams {
|
|
|
2879
2895
|
size?: number;
|
|
2880
2896
|
accessibility?: Accessibility;
|
|
2881
2897
|
format?: string;
|
|
2898
|
+
indexPrefix?: string;
|
|
2882
2899
|
}
|
|
2883
2900
|
interface GuppyBaseQueryParams {
|
|
2884
2901
|
type: string;
|
|
2885
2902
|
filters: FilterSet;
|
|
2886
2903
|
accessibility?: Accessibility;
|
|
2904
|
+
indexPrefix?: string;
|
|
2887
2905
|
}
|
|
2888
2906
|
interface AccessibleDataSliceParams {
|
|
2889
2907
|
type: string;
|
|
2890
2908
|
fields: ReadonlyArray<string>;
|
|
2891
2909
|
accessibility: Accessibility;
|
|
2910
|
+
indexPrefix?: string;
|
|
2892
2911
|
}
|
|
2893
2912
|
interface QueryAggsParams extends GuppyBaseQueryParams {
|
|
2894
2913
|
fields: ReadonlyArray<string>;
|
|
@@ -2942,6 +2961,7 @@ declare const explorerApi: _reduxjs_toolkit_query.Api<(query: guppyApiSliceReque
|
|
|
2942
2961
|
}>, _reduxjs_toolkit_query.UpdateDefinitions<{}, "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", never> & {
|
|
2943
2962
|
getAllFieldsForType: _reduxjs_toolkit_query.QueryDefinition<{
|
|
2944
2963
|
type: string;
|
|
2964
|
+
indexPrefix?: string;
|
|
2945
2965
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
2946
2966
|
data: any;
|
|
2947
2967
|
error?: undefined;
|
|
@@ -2998,7 +3018,10 @@ declare const explorerApi: _reduxjs_toolkit_query.Api<(query: guppyApiSliceReque
|
|
|
2998
3018
|
error: unknown;
|
|
2999
3019
|
data?: undefined;
|
|
3000
3020
|
}>, "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", Record<string, any>, "guppy", any>;
|
|
3001
|
-
getFieldsForIndex: _reduxjs_toolkit_query.QueryDefinition<
|
|
3021
|
+
getFieldsForIndex: _reduxjs_toolkit_query.QueryDefinition<{
|
|
3022
|
+
index: string;
|
|
3023
|
+
indexPrefix: string | undefined;
|
|
3024
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3002
3025
|
data: any;
|
|
3003
3026
|
error?: undefined;
|
|
3004
3027
|
} | {
|
|
@@ -3021,9 +3044,9 @@ declare const explorerApi: _reduxjs_toolkit_query.Api<(query: guppyApiSliceReque
|
|
|
3021
3044
|
}>, "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", Record<string, unknown>, "guppy", any>;
|
|
3022
3045
|
}, "guppy", "AGGS" | "COUNTS" | "STATS" | "TABLE_DATA" | "RAW_DATA", typeof _reduxjs_toolkit_query.coreModuleName | typeof _reduxjs_toolkit_query_react.reactHooksModuleName>;
|
|
3023
3046
|
declare const useGetArrayTypes: () => JSONValue;
|
|
3024
|
-
declare const useGetIndexFields: (index: string) => any;
|
|
3025
|
-
declare const buildGetAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean, queryId?: string | undefined) => GraphQLQuery;
|
|
3026
|
-
declare const buildGetStatsAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean, queryId?: string | undefined) => GraphQLQuery;
|
|
3047
|
+
declare const useGetIndexFields: (index: string, indexPrefix?: string) => any;
|
|
3048
|
+
declare const buildGetAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean, queryId?: string | undefined, indexPrefix?: string) => GraphQLQuery;
|
|
3049
|
+
declare const buildGetStatsAggregationQuery: (type: string, fields: ReadonlyArray<string>, filters: FilterSet, accessibility?: Accessibility, filterSelf?: boolean, queryId?: string | undefined, indexPrefix?: string) => GraphQLQuery;
|
|
3027
3050
|
declare const useGetRawDataAndTotalCountsQuery: <R extends Record<string, any> = _reduxjs_toolkit_query.TSHelpersId<(Omit<{
|
|
3028
3051
|
status: _reduxjs_toolkit_query.QueryStatus.uninitialized;
|
|
3029
3052
|
originalArgs?: undefined | undefined;
|
|
@@ -3418,6 +3441,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3418
3441
|
isUninitialized: true;
|
|
3419
3442
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3420
3443
|
type: string;
|
|
3444
|
+
indexPrefix?: string;
|
|
3421
3445
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3422
3446
|
data: any;
|
|
3423
3447
|
error?: undefined;
|
|
@@ -3441,6 +3465,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3441
3465
|
error: undefined;
|
|
3442
3466
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3443
3467
|
type: string;
|
|
3468
|
+
indexPrefix?: string;
|
|
3444
3469
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3445
3470
|
data: any;
|
|
3446
3471
|
error?: undefined;
|
|
@@ -3460,6 +3485,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3460
3485
|
error: undefined;
|
|
3461
3486
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3462
3487
|
type: string;
|
|
3488
|
+
indexPrefix?: string;
|
|
3463
3489
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3464
3490
|
data: any;
|
|
3465
3491
|
error?: undefined;
|
|
@@ -3477,6 +3503,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3477
3503
|
isError: true;
|
|
3478
3504
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3479
3505
|
type: string;
|
|
3506
|
+
indexPrefix?: string;
|
|
3480
3507
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3481
3508
|
data: any;
|
|
3482
3509
|
error?: undefined;
|
|
@@ -3494,6 +3521,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3494
3521
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
3495
3522
|
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
3496
3523
|
type: string;
|
|
3524
|
+
indexPrefix?: string;
|
|
3497
3525
|
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
3498
3526
|
skip?: boolean;
|
|
3499
3527
|
refetchOnMountOrArgChange?: boolean | number;
|
|
@@ -3519,6 +3547,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3519
3547
|
isUninitialized: true;
|
|
3520
3548
|
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3521
3549
|
type: string;
|
|
3550
|
+
indexPrefix?: string;
|
|
3522
3551
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3523
3552
|
data: any;
|
|
3524
3553
|
error?: undefined;
|
|
@@ -3542,6 +3571,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3542
3571
|
error: undefined;
|
|
3543
3572
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3544
3573
|
type: string;
|
|
3574
|
+
indexPrefix?: string;
|
|
3545
3575
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3546
3576
|
data: any;
|
|
3547
3577
|
error?: undefined;
|
|
@@ -3561,6 +3591,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3561
3591
|
error: undefined;
|
|
3562
3592
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3563
3593
|
type: string;
|
|
3594
|
+
indexPrefix?: string;
|
|
3564
3595
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3565
3596
|
data: any;
|
|
3566
3597
|
error?: undefined;
|
|
@@ -3578,6 +3609,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3578
3609
|
isError: true;
|
|
3579
3610
|
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3580
3611
|
type: string;
|
|
3612
|
+
indexPrefix?: string;
|
|
3581
3613
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3582
3614
|
data: any;
|
|
3583
3615
|
error?: undefined;
|
|
@@ -3597,6 +3629,7 @@ declare const useGetAllFieldsForTypeQuery: <R extends Record<string, any> = _red
|
|
|
3597
3629
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
3598
3630
|
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
3599
3631
|
type: string;
|
|
3632
|
+
indexPrefix?: string;
|
|
3600
3633
|
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
3601
3634
|
data: any;
|
|
3602
3635
|
error?: undefined;
|
|
@@ -5116,7 +5149,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5116
5149
|
isError: false;
|
|
5117
5150
|
}, "isUninitialized"> & {
|
|
5118
5151
|
isUninitialized: true;
|
|
5119
|
-
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5152
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5153
|
+
index: string;
|
|
5154
|
+
indexPrefix: string | undefined;
|
|
5155
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5120
5156
|
data: any;
|
|
5121
5157
|
error?: undefined;
|
|
5122
5158
|
} | {
|
|
@@ -5137,7 +5173,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5137
5173
|
isSuccess: true;
|
|
5138
5174
|
isFetching: true;
|
|
5139
5175
|
error: undefined;
|
|
5140
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5176
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5177
|
+
index: string;
|
|
5178
|
+
indexPrefix: string | undefined;
|
|
5179
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5141
5180
|
data: any;
|
|
5142
5181
|
error?: undefined;
|
|
5143
5182
|
} | {
|
|
@@ -5154,7 +5193,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5154
5193
|
isSuccess: true;
|
|
5155
5194
|
isFetching: false;
|
|
5156
5195
|
error: undefined;
|
|
5157
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5196
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5197
|
+
index: string;
|
|
5198
|
+
indexPrefix: string | undefined;
|
|
5199
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5158
5200
|
data: any;
|
|
5159
5201
|
error?: undefined;
|
|
5160
5202
|
} | {
|
|
@@ -5169,7 +5211,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5169
5211
|
isError: false;
|
|
5170
5212
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5171
5213
|
isError: true;
|
|
5172
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5214
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5215
|
+
index: string;
|
|
5216
|
+
indexPrefix: string | undefined;
|
|
5217
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5173
5218
|
data: any;
|
|
5174
5219
|
error?: undefined;
|
|
5175
5220
|
} | {
|
|
@@ -5184,7 +5229,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5184
5229
|
isError: false;
|
|
5185
5230
|
}, "error">>)>> & {
|
|
5186
5231
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5187
|
-
}>(arg:
|
|
5232
|
+
}>(arg: typeof _reduxjs_toolkit_query.skipToken | {
|
|
5233
|
+
index: string;
|
|
5234
|
+
indexPrefix: string | undefined;
|
|
5235
|
+
}, options?: (_reduxjs_toolkit_query.SubscriptionOptions & {
|
|
5188
5236
|
skip?: boolean;
|
|
5189
5237
|
refetchOnMountOrArgChange?: boolean | number;
|
|
5190
5238
|
} & {
|
|
@@ -5207,7 +5255,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5207
5255
|
isError: false;
|
|
5208
5256
|
}, "isUninitialized"> & {
|
|
5209
5257
|
isUninitialized: true;
|
|
5210
|
-
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5258
|
+
}) | _reduxjs_toolkit_query.TSHelpersOverride<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5259
|
+
index: string;
|
|
5260
|
+
indexPrefix: string | undefined;
|
|
5261
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5211
5262
|
data: any;
|
|
5212
5263
|
error?: undefined;
|
|
5213
5264
|
} | {
|
|
@@ -5228,8 +5279,11 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5228
5279
|
isSuccess: true;
|
|
5229
5280
|
isFetching: true;
|
|
5230
5281
|
error: undefined;
|
|
5231
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5232
|
-
|
|
5282
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5283
|
+
index: string;
|
|
5284
|
+
indexPrefix: string | undefined;
|
|
5285
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5286
|
+
data: any;
|
|
5233
5287
|
error?: undefined;
|
|
5234
5288
|
} | {
|
|
5235
5289
|
error: unknown;
|
|
@@ -5245,7 +5299,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5245
5299
|
isSuccess: true;
|
|
5246
5300
|
isFetching: false;
|
|
5247
5301
|
error: undefined;
|
|
5248
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5302
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5303
|
+
index: string;
|
|
5304
|
+
indexPrefix: string | undefined;
|
|
5305
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5249
5306
|
data: any;
|
|
5250
5307
|
error?: undefined;
|
|
5251
5308
|
} | {
|
|
@@ -5260,7 +5317,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5260
5317
|
isError: false;
|
|
5261
5318
|
}, "data" | "fulfilledTimeStamp" | "currentData">>) | ({
|
|
5262
5319
|
isError: true;
|
|
5263
|
-
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<
|
|
5320
|
+
} & Required<Pick<_reduxjs_toolkit_query.QuerySubState<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5321
|
+
index: string;
|
|
5322
|
+
indexPrefix: string | undefined;
|
|
5323
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5264
5324
|
data: any;
|
|
5265
5325
|
error?: undefined;
|
|
5266
5326
|
} | {
|
|
@@ -5277,7 +5337,10 @@ declare const useGetFieldsForIndexQuery: <R extends Record<string, any> = _redux
|
|
|
5277
5337
|
status: _reduxjs_toolkit_query.QueryStatus;
|
|
5278
5338
|
}) => R) | undefined;
|
|
5279
5339
|
}) | undefined) => [R][R extends any ? 0 : never] & {
|
|
5280
|
-
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<
|
|
5340
|
+
refetch: () => _reduxjs_toolkit_query.QueryActionCreatorResult<_reduxjs_toolkit_query.QueryDefinition<{
|
|
5341
|
+
index: string;
|
|
5342
|
+
indexPrefix: string | undefined;
|
|
5343
|
+
}, (query: guppyApiSliceRequest, api: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
5281
5344
|
data: any;
|
|
5282
5345
|
error?: undefined;
|
|
5283
5346
|
} | {
|
|
@@ -6062,6 +6125,35 @@ declare const selectSharedFiltersForFields: (state: CoreState, field: string) =>
|
|
|
6062
6125
|
declare const setShouldShareFilters: _reduxjs_toolkit.ActionCreatorWithPayload<boolean, "cohortSharedFilters/setShouldShareFilters">;
|
|
6063
6126
|
declare const setSharedFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SharedFieldMapping, "cohortSharedFilters/setSharedFilters">;
|
|
6064
6127
|
|
|
6128
|
+
type CombineMode = 'and' | 'or';
|
|
6129
|
+
type CohortId = string;
|
|
6130
|
+
type CountsData = Record<string, number>;
|
|
6131
|
+
interface StorageEntity<T> {
|
|
6132
|
+
id: T;
|
|
6133
|
+
name: string;
|
|
6134
|
+
}
|
|
6135
|
+
/**
|
|
6136
|
+
* A Cohort is a collection of filters that can be used to query the GDC API.
|
|
6137
|
+
* The cohort interface is used to manage the cohort state in the redux-toolkit entity adapter.
|
|
6138
|
+
* @see https://redux-toolkit.js.org/api/createEntityAdapter
|
|
6139
|
+
*
|
|
6140
|
+
* @property id - the id of the cohort
|
|
6141
|
+
* @property name - the name of the cohort
|
|
6142
|
+
* @property filters - the filters for the cohort
|
|
6143
|
+
* @property modified - flag indicating if the cohort has been modified
|
|
6144
|
+
* @property modifiedDatetime - the last time the cohort was modified
|
|
6145
|
+
* @property saved - flag indicating if the cohort has been saved
|
|
6146
|
+
* @category Cohort
|
|
6147
|
+
*/
|
|
6148
|
+
interface Cohort extends StorageEntity<CohortId> {
|
|
6149
|
+
filters: IndexedFilterSet;
|
|
6150
|
+
modified?: boolean;
|
|
6151
|
+
createdDatetime: string;
|
|
6152
|
+
modifiedDatetime: string;
|
|
6153
|
+
saved?: boolean;
|
|
6154
|
+
counts?: CountsData;
|
|
6155
|
+
}
|
|
6156
|
+
|
|
6065
6157
|
/**
|
|
6066
6158
|
* Defines the modals slice of the Redux store.
|
|
6067
6159
|
* This slice is used to control the display of standard Gen3 modals.
|
|
@@ -6101,6 +6193,53 @@ type EntityType = 'case' | 'gene' | 'ssm' | 'cnv' | 'file';
|
|
|
6101
6193
|
declare const selectGen3AppMetadataByName: (state: CoreState, appName: string) => Gen3AppMetadata;
|
|
6102
6194
|
declare const selectGen3AppByName: (appName: string) => React__default.ReactNode;
|
|
6103
6195
|
|
|
6196
|
+
interface CurrentCohortState {
|
|
6197
|
+
currentCohortId: string;
|
|
6198
|
+
message?: string[];
|
|
6199
|
+
}
|
|
6200
|
+
interface UpdateFilterParams {
|
|
6201
|
+
index: string;
|
|
6202
|
+
field: string;
|
|
6203
|
+
filter: Operation;
|
|
6204
|
+
}
|
|
6205
|
+
interface SetFilterParams {
|
|
6206
|
+
index: string;
|
|
6207
|
+
filters: FilterSet;
|
|
6208
|
+
}
|
|
6209
|
+
interface SetAllIndexFiltersParams {
|
|
6210
|
+
filters: IndexedFilterSet;
|
|
6211
|
+
}
|
|
6212
|
+
interface RemoveFilterParams {
|
|
6213
|
+
index: string;
|
|
6214
|
+
field: string;
|
|
6215
|
+
}
|
|
6216
|
+
interface ClearAllFilterParams {
|
|
6217
|
+
index: string;
|
|
6218
|
+
}
|
|
6219
|
+
interface CreateCohortParams {
|
|
6220
|
+
name?: string;
|
|
6221
|
+
filters?: IndexedFilterSet;
|
|
6222
|
+
}
|
|
6223
|
+
interface UpdateCohortNameParams {
|
|
6224
|
+
id: string;
|
|
6225
|
+
name: string;
|
|
6226
|
+
}
|
|
6227
|
+
declare const createNewCohort: _reduxjs_toolkit.ActionCreatorWithPayload<CreateCohortParams, "cohort/createNewCohort">;
|
|
6228
|
+
declare const updateCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateFilterParams, "cohort/updateCohortFilter">;
|
|
6229
|
+
declare const setCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<SetFilterParams, "cohort/setCohortFilter">;
|
|
6230
|
+
declare const setCohortIndexFilters: _reduxjs_toolkit.ActionCreatorWithPayload<SetAllIndexFiltersParams, "cohort/setCohortIndexFilters">;
|
|
6231
|
+
declare const duplicateCohort: _reduxjs_toolkit.ActionCreatorWithoutPayload<"cohort/duplicateCohort">;
|
|
6232
|
+
declare const removeCohortFilter: _reduxjs_toolkit.ActionCreatorWithPayload<RemoveFilterParams, "cohort/removeCohortFilter">;
|
|
6233
|
+
declare const clearCohortFilters: _reduxjs_toolkit.ActionCreatorWithPayload<ClearAllFilterParams, "cohort/clearCohortFilters">;
|
|
6234
|
+
declare const removeCohort: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6235
|
+
shouldShowMessage?: boolean;
|
|
6236
|
+
id: string;
|
|
6237
|
+
}, "cohort/removeCohort">;
|
|
6238
|
+
declare const setCurrentCohortId: _reduxjs_toolkit.ActionCreatorWithPayload<string, "cohort/setCurrentCohortId">;
|
|
6239
|
+
declare const updateCohortName: _reduxjs_toolkit.ActionCreatorWithPayload<UpdateCohortNameParams, "cohort/updateCohortName">;
|
|
6240
|
+
declare const setCohortList: _reduxjs_toolkit.ActionCreatorWithPayload<Cohort[], "cohort/setCohortList">;
|
|
6241
|
+
declare const cohortReducer: redux.Reducer<EntityState<Cohort, string> & CurrentCohortState>;
|
|
6242
|
+
|
|
6104
6243
|
/**
|
|
6105
6244
|
* Update declaration of persistReducer to support redux v5
|
|
6106
6245
|
*/
|
|
@@ -6141,6 +6280,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6141
6280
|
data: Gen3FenceResponse<unknown>;
|
|
6142
6281
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6143
6282
|
}, never, "userAuthApi">;
|
|
6283
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6144
6284
|
} & {
|
|
6145
6285
|
_persist: PersistState;
|
|
6146
6286
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6174,6 +6314,7 @@ declare const setupCoreStore: (preloadedState?: Partial<CoreState>) => _reduxjs_
|
|
|
6174
6314
|
data: Gen3FenceResponse<unknown>;
|
|
6175
6315
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6176
6316
|
}, never, "userAuthApi">;
|
|
6317
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6177
6318
|
} & {
|
|
6178
6319
|
_persist: PersistState;
|
|
6179
6320
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6208,6 +6349,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6208
6349
|
data: Gen3FenceResponse<unknown>;
|
|
6209
6350
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6210
6351
|
}, never, "userAuthApi">;
|
|
6352
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6211
6353
|
} & {
|
|
6212
6354
|
_persist: PersistState;
|
|
6213
6355
|
}, redux.UnknownAction, _reduxjs_toolkit.Tuple<[redux.StoreEnhancer<{
|
|
@@ -6241,6 +6383,7 @@ declare const coreStore: _reduxjs_toolkit.EnhancedStore<{
|
|
|
6241
6383
|
data: Gen3FenceResponse<unknown>;
|
|
6242
6384
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
6243
6385
|
}, never, "userAuthApi">;
|
|
6386
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
6244
6387
|
} & {
|
|
6245
6388
|
_persist: PersistState;
|
|
6246
6389
|
}, undefined, redux.UnknownAction>;
|
|
@@ -6879,82 +7022,6 @@ declare const useGetFederatedLoginStatus: ({ selectedFiles, }: FederatedLoginSta
|
|
|
6879
7022
|
};
|
|
6880
7023
|
declare const getFederatedLoginStatus: (selectedFiles: ReadonlyArray<FileMetadata>) => Promise<ExternalLoginStatus>;
|
|
6881
7024
|
|
|
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
7025
|
declare const toggleCohortBuilderCategoryFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
6959
7026
|
index: string;
|
|
6960
7027
|
field: string;
|
|
@@ -7072,6 +7139,7 @@ declare const selectAllCohorts: (state: {
|
|
|
7072
7139
|
data: Gen3FenceResponse<unknown>;
|
|
7073
7140
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7074
7141
|
}, never, "userAuthApi">;
|
|
7142
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7075
7143
|
}) => Cohort[];
|
|
7076
7144
|
declare const selectTotalCohorts: (state: {
|
|
7077
7145
|
[x: string]: any;
|
|
@@ -7103,6 +7171,7 @@ declare const selectTotalCohorts: (state: {
|
|
|
7103
7171
|
data: Gen3FenceResponse<unknown>;
|
|
7104
7172
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7105
7173
|
}, never, "userAuthApi">;
|
|
7174
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7106
7175
|
}) => number;
|
|
7107
7176
|
declare const selectCohortById: (state: {
|
|
7108
7177
|
[x: string]: any;
|
|
@@ -7134,6 +7203,7 @@ declare const selectCohortById: (state: {
|
|
|
7134
7203
|
data: Gen3FenceResponse<unknown>;
|
|
7135
7204
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7136
7205
|
}, never, "userAuthApi">;
|
|
7206
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7137
7207
|
}, id: string) => {
|
|
7138
7208
|
filters: IndexedFilterSet;
|
|
7139
7209
|
modified?: boolean | undefined;
|
|
@@ -7174,6 +7244,7 @@ declare const selectCohortIds: (state: {
|
|
|
7174
7244
|
data: Gen3FenceResponse<unknown>;
|
|
7175
7245
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7176
7246
|
}, never, "userAuthApi">;
|
|
7247
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7177
7248
|
}) => string[];
|
|
7178
7249
|
declare const selectCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
7179
7250
|
declare const selectCurrentCohortFilters: (state: CoreState) => IndexedFilterSet;
|
|
@@ -7230,6 +7301,152 @@ declare const selectIndexFilters: (state: CoreState, index: string) => FilterSet
|
|
|
7230
7301
|
declare const defaultCohortNameGenerator: () => string;
|
|
7231
7302
|
declare const isNameUnique: <T extends CohortId = CohortId>(entities: Array<StorageEntity<T>>, name: string, excludeId?: T) => boolean;
|
|
7232
7303
|
declare const generateUniqueName: <T extends CohortId = CohortId>(entities: Array<StorageEntity<T>>, baseName: string) => string;
|
|
7304
|
+
/**
|
|
7305
|
+
* This function takes a FilterSet object and a prefix string as input.
|
|
7306
|
+
* It filters the root property of the FilterSet object and returns a
|
|
7307
|
+
* new FilterSet object that only contains filters with field names
|
|
7308
|
+
* that start with the specified prefix.
|
|
7309
|
+
*
|
|
7310
|
+
* @param fs - The FilterSet object to filter
|
|
7311
|
+
* @param prefix - The prefix to filter by
|
|
7312
|
+
* @returns - A new FilterSet object that only contains filters with field names that start with the specified prefix
|
|
7313
|
+
* @category Filters
|
|
7314
|
+
*/
|
|
7315
|
+
declare const extractFiltersWithPrefixFromFilterSet: (fs: FilterSet | undefined, prefix: string) => FilterSet;
|
|
7316
|
+
|
|
7317
|
+
declare const selectCartItem: (state: {
|
|
7318
|
+
[x: string]: any;
|
|
7319
|
+
gen3Services: any;
|
|
7320
|
+
user: Gen3UserState;
|
|
7321
|
+
gen3Apps: Gen3AppsState;
|
|
7322
|
+
drsHostnames: Record<string, string>;
|
|
7323
|
+
modals: ModalState;
|
|
7324
|
+
cohorts: {
|
|
7325
|
+
filtersExpanded: {
|
|
7326
|
+
[x: string]: Record<string, boolean>;
|
|
7327
|
+
};
|
|
7328
|
+
filtersCombineMode: {
|
|
7329
|
+
[x: string]: Record<string, CombineMode>;
|
|
7330
|
+
};
|
|
7331
|
+
sharedFilters: SharedFiltersState;
|
|
7332
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7333
|
+
};
|
|
7334
|
+
activeWorkspace: WorkspaceState;
|
|
7335
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7336
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7337
|
+
data: {};
|
|
7338
|
+
} | {
|
|
7339
|
+
data: Gen3FenceResponse<unknown>;
|
|
7340
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7341
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7342
|
+
data: {};
|
|
7343
|
+
} | {
|
|
7344
|
+
data: Gen3FenceResponse<unknown>;
|
|
7345
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7346
|
+
}, never, "userAuthApi">;
|
|
7347
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7348
|
+
}, id: string) => {
|
|
7349
|
+
[x: string]: any;
|
|
7350
|
+
id: CartItemId;
|
|
7351
|
+
};
|
|
7352
|
+
declare const selectCartItems: (state: {
|
|
7353
|
+
[x: string]: any;
|
|
7354
|
+
gen3Services: any;
|
|
7355
|
+
user: Gen3UserState;
|
|
7356
|
+
gen3Apps: Gen3AppsState;
|
|
7357
|
+
drsHostnames: Record<string, string>;
|
|
7358
|
+
modals: ModalState;
|
|
7359
|
+
cohorts: {
|
|
7360
|
+
filtersExpanded: {
|
|
7361
|
+
[x: string]: Record<string, boolean>;
|
|
7362
|
+
};
|
|
7363
|
+
filtersCombineMode: {
|
|
7364
|
+
[x: string]: Record<string, CombineMode>;
|
|
7365
|
+
};
|
|
7366
|
+
sharedFilters: SharedFiltersState;
|
|
7367
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7368
|
+
};
|
|
7369
|
+
activeWorkspace: WorkspaceState;
|
|
7370
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7371
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7372
|
+
data: {};
|
|
7373
|
+
} | {
|
|
7374
|
+
data: Gen3FenceResponse<unknown>;
|
|
7375
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7376
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7377
|
+
data: {};
|
|
7378
|
+
} | {
|
|
7379
|
+
data: Gen3FenceResponse<unknown>;
|
|
7380
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7381
|
+
}, never, "userAuthApi">;
|
|
7382
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7383
|
+
}) => string[];
|
|
7384
|
+
declare const selectCart: (state: {
|
|
7385
|
+
[x: string]: any;
|
|
7386
|
+
gen3Services: any;
|
|
7387
|
+
user: Gen3UserState;
|
|
7388
|
+
gen3Apps: Gen3AppsState;
|
|
7389
|
+
drsHostnames: Record<string, string>;
|
|
7390
|
+
modals: ModalState;
|
|
7391
|
+
cohorts: {
|
|
7392
|
+
filtersExpanded: {
|
|
7393
|
+
[x: string]: Record<string, boolean>;
|
|
7394
|
+
};
|
|
7395
|
+
filtersCombineMode: {
|
|
7396
|
+
[x: string]: Record<string, CombineMode>;
|
|
7397
|
+
};
|
|
7398
|
+
sharedFilters: SharedFiltersState;
|
|
7399
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7400
|
+
};
|
|
7401
|
+
activeWorkspace: WorkspaceState;
|
|
7402
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7403
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7404
|
+
data: {};
|
|
7405
|
+
} | {
|
|
7406
|
+
data: Gen3FenceResponse<unknown>;
|
|
7407
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7408
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7409
|
+
data: {};
|
|
7410
|
+
} | {
|
|
7411
|
+
data: Gen3FenceResponse<unknown>;
|
|
7412
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7413
|
+
}, never, "userAuthApi">;
|
|
7414
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7415
|
+
}) => CartItem[];
|
|
7416
|
+
declare const selectCartCount: (state: {
|
|
7417
|
+
[x: string]: any;
|
|
7418
|
+
gen3Services: any;
|
|
7419
|
+
user: Gen3UserState;
|
|
7420
|
+
gen3Apps: Gen3AppsState;
|
|
7421
|
+
drsHostnames: Record<string, string>;
|
|
7422
|
+
modals: ModalState;
|
|
7423
|
+
cohorts: {
|
|
7424
|
+
filtersExpanded: {
|
|
7425
|
+
[x: string]: Record<string, boolean>;
|
|
7426
|
+
};
|
|
7427
|
+
filtersCombineMode: {
|
|
7428
|
+
[x: string]: Record<string, CombineMode>;
|
|
7429
|
+
};
|
|
7430
|
+
sharedFilters: SharedFiltersState;
|
|
7431
|
+
cohortManager: _reduxjs_toolkit.EntityState<Cohort, string> & CurrentCohortState;
|
|
7432
|
+
};
|
|
7433
|
+
activeWorkspace: WorkspaceState;
|
|
7434
|
+
userAuthApi: _reduxjs_toolkit_query.CombinedState<{
|
|
7435
|
+
fetchUserDetails: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7436
|
+
data: {};
|
|
7437
|
+
} | {
|
|
7438
|
+
data: Gen3FenceResponse<unknown>;
|
|
7439
|
+
}>, never, UserAuthResponse, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7440
|
+
getCSRF: _reduxjs_toolkit_query.QueryDefinition<void, ({ endpoint }: any, { getState }: _reduxjs_toolkit_query.BaseQueryApi) => Promise<{
|
|
7441
|
+
data: {};
|
|
7442
|
+
} | {
|
|
7443
|
+
data: Gen3FenceResponse<unknown>;
|
|
7444
|
+
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
7445
|
+
}, never, "userAuthApi">;
|
|
7446
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
7447
|
+
}) => number;
|
|
7448
|
+
|
|
7449
|
+
declare const cartReducerPath = "cart";
|
|
7233
7450
|
|
|
7234
7451
|
interface CSRFToken {
|
|
7235
7452
|
readonly csrfToken: string;
|
|
@@ -8471,6 +8688,7 @@ declare const selectCSRFToken: ((state: _reduxjs_toolkit_query.RootState<{
|
|
|
8471
8688
|
data: Gen3FenceResponse<unknown>;
|
|
8472
8689
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8473
8690
|
}, never, "userAuthApi">;
|
|
8691
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8474
8692
|
}) => string | undefined) & {
|
|
8475
8693
|
clearCache: () => void;
|
|
8476
8694
|
resultsCount: () => number;
|
|
@@ -8757,6 +8975,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8757
8975
|
data: Gen3FenceResponse<unknown>;
|
|
8758
8976
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8759
8977
|
}, never, "userAuthApi">;
|
|
8978
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8760
8979
|
}) => {
|
|
8761
8980
|
'X-CSRF-Token'?: string | undefined;
|
|
8762
8981
|
Accept: string;
|
|
@@ -8848,6 +9067,7 @@ declare const selectHeadersWithCSRFToken: ((state: _reduxjs_toolkit_query.RootSt
|
|
|
8848
9067
|
data: Gen3FenceResponse<unknown>;
|
|
8849
9068
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
8850
9069
|
}, never, "userAuthApi">;
|
|
9070
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
8851
9071
|
}) => string | undefined) & {
|
|
8852
9072
|
clearCache: () => void;
|
|
8853
9073
|
resultsCount: () => number;
|
|
@@ -9143,6 +9363,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9143
9363
|
data: Gen3FenceResponse<unknown>;
|
|
9144
9364
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9145
9365
|
}, never, "userAuthApi">;
|
|
9366
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9146
9367
|
}, redux.UnknownAction, Partial<{
|
|
9147
9368
|
[x: string]: any;
|
|
9148
9369
|
gen3Services: any;
|
|
@@ -9182,6 +9403,7 @@ declare const rootReducer: redux.Reducer<{
|
|
|
9182
9403
|
data: Gen3FenceResponse<unknown>;
|
|
9183
9404
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9184
9405
|
}, never, "userAuthApi"> | undefined;
|
|
9406
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string> | undefined;
|
|
9185
9407
|
}>>;
|
|
9186
9408
|
type CoreState = ReturnType<typeof rootReducer>;
|
|
9187
9409
|
|
|
@@ -9222,6 +9444,7 @@ declare const useCoreSelector: react_redux.UseSelector<{
|
|
|
9222
9444
|
data: Gen3FenceResponse<unknown>;
|
|
9223
9445
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9224
9446
|
}, never, "userAuthApi">;
|
|
9447
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9225
9448
|
}>;
|
|
9226
9449
|
declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"listenerMiddleware/add">) => _reduxjs_toolkit.UnsubscribeListener) & redux_thunk.ThunkDispatch<{
|
|
9227
9450
|
[x: string]: any;
|
|
@@ -9253,6 +9476,7 @@ declare const useCoreDispatch: react_redux.UseDispatch<((action: redux.Action<"l
|
|
|
9253
9476
|
data: Gen3FenceResponse<unknown>;
|
|
9254
9477
|
}>, never, CSRFToken, "userAuthApi", Gen3FenceResponse<unknown> | {}>;
|
|
9255
9478
|
}, never, "userAuthApi">;
|
|
9479
|
+
cart: _reduxjs_toolkit.EntityState<CartItem, string>;
|
|
9256
9480
|
} & {
|
|
9257
9481
|
_persist: redux_persist_es_types.PersistState;
|
|
9258
9482
|
}, undefined, redux.UnknownAction> & redux.Dispatch<redux.UnknownAction>>;
|
|
@@ -17448,5 +17672,5 @@ declare const selectPaymodelStatus: ((state: _reduxjs_toolkit_query.RootState<_r
|
|
|
17448
17672
|
declare const isWorkspaceActive: (status: WorkspaceStatus) => status is WorkspaceStatus.Launching | WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17449
17673
|
declare const isWorkspaceRunningOrStopping: (status: WorkspaceStatus) => status is WorkspaceStatus.Running | WorkspaceStatus.Terminating;
|
|
17450
17674
|
|
|
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 };
|
|
17675
|
+
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 };
|
|
17676
|
+
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 };
|