@gen3/core 0.10.75 → 0.10.76
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 +47 -33
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/aiSearch/aiSearchSlice.d.ts +24 -24
- package/dist/dts/features/authz/authzMappingSlice.d.ts +36 -36
- package/dist/dts/features/dataLibrary/dataLibraryApi.d.ts +24 -24
- package/dist/dts/features/download/downloadStatusApi.d.ts +39 -37
- package/dist/dts/features/download/downloadStatusApi.d.ts.map +1 -1
- package/dist/dts/features/fence/credentialsApi.d.ts +12 -12
- package/dist/dts/features/fence/fenceApi.d.ts +39 -37
- package/dist/dts/features/fence/fenceApi.d.ts.map +1 -1
- package/dist/dts/features/fence/jwtApi.d.ts +12 -12
- package/dist/dts/features/gen3Apps/Gen3AppRTKQ.d.ts +3 -3
- package/dist/dts/features/graphQL/graphQLSlice.d.ts +12 -12
- package/dist/dts/features/guppy/guppySlice.d.ts +138 -134
- package/dist/dts/features/guppy/guppySlice.d.ts.map +1 -1
- package/dist/dts/features/metadata/metadataSlice.d.ts +99 -97
- package/dist/dts/features/metadata/metadataSlice.d.ts.map +1 -1
- package/dist/dts/features/sower/sowerApi.d.ts +63 -61
- package/dist/dts/features/sower/sowerApi.d.ts.map +1 -1
- package/dist/dts/features/submission/submissionApi.d.ts +90 -86
- package/dist/dts/features/submission/submissionApi.d.ts.map +1 -1
- package/dist/dts/features/user/externalLoginsSlice.d.ts +54 -50
- package/dist/dts/features/user/externalLoginsSlice.d.ts.map +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +123 -121
- package/dist/dts/features/user/userSliceRTK.d.ts.map +1 -1
- package/dist/dts/features/workspace/workspaceApi.d.ts +138 -138
- package/dist/dts/utils/fetch.d.ts +2 -2
- package/dist/dts/utils/fetch.d.ts.map +1 -1
- package/dist/esm/index.js +27 -19
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +845 -825
- package/package.json +2 -3
- package/LICENSE +0 -201
|
@@ -11,13 +11,13 @@ export declare const workspacesApi: import("@reduxjs/toolkit/query").Api<import(
|
|
|
11
11
|
}, "gen3Services", "Workspace" | "PayModel", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/query/react").reactHooksModuleName>;
|
|
12
12
|
export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
13
13
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
14
|
-
originalArgs?: undefined;
|
|
15
|
-
data?: undefined;
|
|
16
|
-
error?: undefined;
|
|
17
|
-
requestId?: undefined;
|
|
14
|
+
originalArgs?: undefined | undefined;
|
|
15
|
+
data?: undefined | undefined;
|
|
16
|
+
error?: undefined | undefined;
|
|
17
|
+
requestId?: undefined | undefined;
|
|
18
18
|
endpointName?: string | undefined;
|
|
19
|
-
startedTimeStamp?: undefined;
|
|
20
|
-
fulfilledTimeStamp?: undefined;
|
|
19
|
+
startedTimeStamp?: undefined | undefined;
|
|
20
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
21
21
|
} & {
|
|
22
22
|
currentData?: WorkspaceOptions | undefined;
|
|
23
23
|
isUninitialized: false;
|
|
@@ -78,13 +78,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
78
78
|
skip?: boolean;
|
|
79
79
|
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
80
80
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
81
|
-
originalArgs?: undefined;
|
|
82
|
-
data?: undefined;
|
|
83
|
-
error?: undefined;
|
|
84
|
-
requestId?: undefined;
|
|
81
|
+
originalArgs?: undefined | undefined;
|
|
82
|
+
data?: undefined | undefined;
|
|
83
|
+
error?: undefined | undefined;
|
|
84
|
+
requestId?: undefined | undefined;
|
|
85
85
|
endpointName?: string | undefined;
|
|
86
|
-
startedTimeStamp?: undefined;
|
|
87
|
-
fulfilledTimeStamp?: undefined;
|
|
86
|
+
startedTimeStamp?: undefined | undefined;
|
|
87
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
88
88
|
} & {
|
|
89
89
|
currentData?: WorkspaceOptions | undefined;
|
|
90
90
|
isUninitialized: false;
|
|
@@ -143,13 +143,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
143
143
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", WorkspaceOptions, "gen3Services">>;
|
|
144
144
|
}, useGetWorkspacePayModelsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
145
145
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
146
|
-
originalArgs?: undefined;
|
|
147
|
-
data?: undefined;
|
|
148
|
-
error?: undefined;
|
|
149
|
-
requestId?: undefined;
|
|
146
|
+
originalArgs?: undefined | undefined;
|
|
147
|
+
data?: undefined | undefined;
|
|
148
|
+
error?: undefined | undefined;
|
|
149
|
+
requestId?: undefined | undefined;
|
|
150
150
|
endpointName?: string | undefined;
|
|
151
|
-
startedTimeStamp?: undefined;
|
|
152
|
-
fulfilledTimeStamp?: undefined;
|
|
151
|
+
startedTimeStamp?: undefined | undefined;
|
|
152
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
153
153
|
} & {
|
|
154
154
|
currentData?: WorkspacePayModelResponse | undefined;
|
|
155
155
|
isUninitialized: false;
|
|
@@ -210,13 +210,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
210
210
|
skip?: boolean;
|
|
211
211
|
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
212
212
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
213
|
-
originalArgs?: undefined;
|
|
214
|
-
data?: undefined;
|
|
215
|
-
error?: undefined;
|
|
216
|
-
requestId?: undefined;
|
|
213
|
+
originalArgs?: undefined | undefined;
|
|
214
|
+
data?: undefined | undefined;
|
|
215
|
+
error?: undefined | undefined;
|
|
216
|
+
requestId?: undefined | undefined;
|
|
217
217
|
endpointName?: string | undefined;
|
|
218
|
-
startedTimeStamp?: undefined;
|
|
219
|
-
fulfilledTimeStamp?: undefined;
|
|
218
|
+
startedTimeStamp?: undefined | undefined;
|
|
219
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
220
220
|
} & {
|
|
221
221
|
currentData?: WorkspacePayModelResponse | undefined;
|
|
222
222
|
isUninitialized: false;
|
|
@@ -275,13 +275,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
275
275
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", WorkspacePayModelResponse, "gen3Services">>;
|
|
276
276
|
}, useGetWorkspaceStatusQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
277
277
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
278
|
-
originalArgs?: undefined;
|
|
279
|
-
data?: undefined;
|
|
280
|
-
error?: undefined;
|
|
281
|
-
requestId?: undefined;
|
|
278
|
+
originalArgs?: undefined | undefined;
|
|
279
|
+
data?: undefined | undefined;
|
|
280
|
+
error?: undefined | undefined;
|
|
281
|
+
requestId?: undefined | undefined;
|
|
282
282
|
endpointName?: string | undefined;
|
|
283
|
-
startedTimeStamp?: undefined;
|
|
284
|
-
fulfilledTimeStamp?: undefined;
|
|
283
|
+
startedTimeStamp?: undefined | undefined;
|
|
284
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
285
285
|
} & {
|
|
286
286
|
currentData?: WorkspaceStatusResponse | undefined;
|
|
287
287
|
isUninitialized: false;
|
|
@@ -342,13 +342,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
342
342
|
skip?: boolean;
|
|
343
343
|
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
344
344
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
345
|
-
originalArgs?: undefined;
|
|
346
|
-
data?: undefined;
|
|
347
|
-
error?: undefined;
|
|
348
|
-
requestId?: undefined;
|
|
345
|
+
originalArgs?: undefined | undefined;
|
|
346
|
+
data?: undefined | undefined;
|
|
347
|
+
error?: undefined | undefined;
|
|
348
|
+
requestId?: undefined | undefined;
|
|
349
349
|
endpointName?: string | undefined;
|
|
350
|
-
startedTimeStamp?: undefined;
|
|
351
|
-
fulfilledTimeStamp?: undefined;
|
|
350
|
+
startedTimeStamp?: undefined | undefined;
|
|
351
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
352
352
|
} & {
|
|
353
353
|
currentData?: WorkspaceStatusResponse | undefined;
|
|
354
354
|
isUninitialized: false;
|
|
@@ -407,13 +407,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
407
407
|
refetch: () => import("@reduxjs/toolkit/query").QueryActionCreatorResult<import("@reduxjs/toolkit/query").QueryDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", WorkspaceStatusResponse, "gen3Services">>;
|
|
408
408
|
}, useGetActivePayModelQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
409
409
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
410
|
-
originalArgs?: undefined;
|
|
411
|
-
data?: undefined;
|
|
412
|
-
error?: undefined;
|
|
413
|
-
requestId?: undefined;
|
|
410
|
+
originalArgs?: undefined | undefined;
|
|
411
|
+
data?: undefined | undefined;
|
|
412
|
+
error?: undefined | undefined;
|
|
413
|
+
requestId?: undefined | undefined;
|
|
414
414
|
endpointName?: string | undefined;
|
|
415
|
-
startedTimeStamp?: undefined;
|
|
416
|
-
fulfilledTimeStamp?: undefined;
|
|
415
|
+
startedTimeStamp?: undefined | undefined;
|
|
416
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
417
417
|
} & {
|
|
418
418
|
currentData?: PayModel | undefined;
|
|
419
419
|
isUninitialized: false;
|
|
@@ -474,13 +474,13 @@ export declare const useGetWorkspaceOptionsQuery: <R extends Record<string, any>
|
|
|
474
474
|
skip?: boolean;
|
|
475
475
|
selectFromResult?: ((state: import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
476
476
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
477
|
-
originalArgs?: undefined;
|
|
478
|
-
data?: undefined;
|
|
479
|
-
error?: undefined;
|
|
480
|
-
requestId?: undefined;
|
|
477
|
+
originalArgs?: undefined | undefined;
|
|
478
|
+
data?: undefined | undefined;
|
|
479
|
+
error?: undefined | undefined;
|
|
480
|
+
requestId?: undefined | undefined;
|
|
481
481
|
endpointName?: string | undefined;
|
|
482
|
-
startedTimeStamp?: undefined;
|
|
483
|
-
fulfilledTimeStamp?: undefined;
|
|
482
|
+
startedTimeStamp?: undefined | undefined;
|
|
483
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
484
484
|
} & {
|
|
485
485
|
currentData?: PayModel | undefined;
|
|
486
486
|
isUninitialized: false;
|
|
@@ -1028,13 +1028,13 @@ export declare const workspaceStatusSelector: (state: import("@reduxjs/toolkit/q
|
|
|
1028
1028
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1029
1029
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1030
1030
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1031
|
-
originalArgs?: undefined;
|
|
1032
|
-
data?: undefined;
|
|
1033
|
-
error?: undefined;
|
|
1034
|
-
requestId?: undefined;
|
|
1031
|
+
originalArgs?: undefined | undefined;
|
|
1032
|
+
data?: undefined | undefined;
|
|
1033
|
+
error?: undefined | undefined;
|
|
1034
|
+
requestId?: undefined | undefined;
|
|
1035
1035
|
endpointName?: string | undefined;
|
|
1036
|
-
startedTimeStamp?: undefined;
|
|
1037
|
-
fulfilledTimeStamp?: undefined;
|
|
1036
|
+
startedTimeStamp?: undefined | undefined;
|
|
1037
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1038
1038
|
} & {
|
|
1039
1039
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1040
1040
|
isUninitialized: true;
|
|
@@ -1102,13 +1102,13 @@ export declare const selectWorkspaceStatusFromService: ((state: import("@reduxjs
|
|
|
1102
1102
|
} & {
|
|
1103
1103
|
resultFunc: (resultFuncArgs_0: ({
|
|
1104
1104
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1105
|
-
originalArgs?: undefined;
|
|
1106
|
-
data?: undefined;
|
|
1107
|
-
error?: undefined;
|
|
1108
|
-
requestId?: undefined;
|
|
1105
|
+
originalArgs?: undefined | undefined;
|
|
1106
|
+
data?: undefined | undefined;
|
|
1107
|
+
error?: undefined | undefined;
|
|
1108
|
+
requestId?: undefined | undefined;
|
|
1109
1109
|
endpointName?: string | undefined;
|
|
1110
|
-
startedTimeStamp?: undefined;
|
|
1111
|
-
fulfilledTimeStamp?: undefined;
|
|
1110
|
+
startedTimeStamp?: undefined | undefined;
|
|
1111
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1112
1112
|
} & {
|
|
1113
1113
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1114
1114
|
isUninitialized: true;
|
|
@@ -1163,13 +1163,13 @@ export declare const selectWorkspaceStatusFromService: ((state: import("@reduxjs
|
|
|
1163
1163
|
})) => WorkspaceStatusResponse;
|
|
1164
1164
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
1165
1165
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1166
|
-
originalArgs?: undefined;
|
|
1167
|
-
data?: undefined;
|
|
1168
|
-
error?: undefined;
|
|
1169
|
-
requestId?: undefined;
|
|
1166
|
+
originalArgs?: undefined | undefined;
|
|
1167
|
+
data?: undefined | undefined;
|
|
1168
|
+
error?: undefined | undefined;
|
|
1169
|
+
requestId?: undefined | undefined;
|
|
1170
1170
|
endpointName?: string | undefined;
|
|
1171
|
-
startedTimeStamp?: undefined;
|
|
1172
|
-
fulfilledTimeStamp?: undefined;
|
|
1171
|
+
startedTimeStamp?: undefined | undefined;
|
|
1172
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1173
1173
|
} & {
|
|
1174
1174
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1175
1175
|
isUninitialized: true;
|
|
@@ -1237,13 +1237,13 @@ export declare const selectWorkspaceStatusFromService: ((state: import("@reduxjs
|
|
|
1237
1237
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1238
1238
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1239
1239
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1240
|
-
originalArgs?: undefined;
|
|
1241
|
-
data?: undefined;
|
|
1242
|
-
error?: undefined;
|
|
1243
|
-
requestId?: undefined;
|
|
1240
|
+
originalArgs?: undefined | undefined;
|
|
1241
|
+
data?: undefined | undefined;
|
|
1242
|
+
error?: undefined | undefined;
|
|
1243
|
+
requestId?: undefined | undefined;
|
|
1244
1244
|
endpointName?: string | undefined;
|
|
1245
|
-
startedTimeStamp?: undefined;
|
|
1246
|
-
fulfilledTimeStamp?: undefined;
|
|
1245
|
+
startedTimeStamp?: undefined | undefined;
|
|
1246
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1247
1247
|
} & {
|
|
1248
1248
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1249
1249
|
isUninitialized: true;
|
|
@@ -1319,13 +1319,13 @@ export declare const selectWorkspaceStatus: ((state: import("@reduxjs/toolkit/qu
|
|
|
1319
1319
|
} & {
|
|
1320
1320
|
resultFunc: (resultFuncArgs_0: ({
|
|
1321
1321
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1322
|
-
originalArgs?: undefined;
|
|
1323
|
-
data?: undefined;
|
|
1324
|
-
error?: undefined;
|
|
1325
|
-
requestId?: undefined;
|
|
1322
|
+
originalArgs?: undefined | undefined;
|
|
1323
|
+
data?: undefined | undefined;
|
|
1324
|
+
error?: undefined | undefined;
|
|
1325
|
+
requestId?: undefined | undefined;
|
|
1326
1326
|
endpointName?: string | undefined;
|
|
1327
|
-
startedTimeStamp?: undefined;
|
|
1328
|
-
fulfilledTimeStamp?: undefined;
|
|
1327
|
+
startedTimeStamp?: undefined | undefined;
|
|
1328
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1329
1329
|
} & {
|
|
1330
1330
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1331
1331
|
isUninitialized: true;
|
|
@@ -1380,13 +1380,13 @@ export declare const selectWorkspaceStatus: ((state: import("@reduxjs/toolkit/qu
|
|
|
1380
1380
|
})) => WorkspaceStatus;
|
|
1381
1381
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
1382
1382
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1383
|
-
originalArgs?: undefined;
|
|
1384
|
-
data?: undefined;
|
|
1385
|
-
error?: undefined;
|
|
1386
|
-
requestId?: undefined;
|
|
1383
|
+
originalArgs?: undefined | undefined;
|
|
1384
|
+
data?: undefined | undefined;
|
|
1385
|
+
error?: undefined | undefined;
|
|
1386
|
+
requestId?: undefined | undefined;
|
|
1387
1387
|
endpointName?: string | undefined;
|
|
1388
|
-
startedTimeStamp?: undefined;
|
|
1389
|
-
fulfilledTimeStamp?: undefined;
|
|
1388
|
+
startedTimeStamp?: undefined | undefined;
|
|
1389
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1390
1390
|
} & {
|
|
1391
1391
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1392
1392
|
isUninitialized: true;
|
|
@@ -1454,13 +1454,13 @@ export declare const selectWorkspaceStatus: ((state: import("@reduxjs/toolkit/qu
|
|
|
1454
1454
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1455
1455
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1456
1456
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1457
|
-
originalArgs?: undefined;
|
|
1458
|
-
data?: undefined;
|
|
1459
|
-
error?: undefined;
|
|
1460
|
-
requestId?: undefined;
|
|
1457
|
+
originalArgs?: undefined | undefined;
|
|
1458
|
+
data?: undefined | undefined;
|
|
1459
|
+
error?: undefined | undefined;
|
|
1460
|
+
requestId?: undefined | undefined;
|
|
1461
1461
|
endpointName?: string | undefined;
|
|
1462
|
-
startedTimeStamp?: undefined;
|
|
1463
|
-
fulfilledTimeStamp?: undefined;
|
|
1462
|
+
startedTimeStamp?: undefined | undefined;
|
|
1463
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1464
1464
|
} & {
|
|
1465
1465
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1466
1466
|
isUninitialized: true;
|
|
@@ -1531,13 +1531,13 @@ export declare const paymodelStatusSelector: (state: import("@reduxjs/toolkit/qu
|
|
|
1531
1531
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1532
1532
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1533
1533
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1534
|
-
originalArgs?: undefined;
|
|
1535
|
-
data?: undefined;
|
|
1536
|
-
error?: undefined;
|
|
1537
|
-
requestId?: undefined;
|
|
1534
|
+
originalArgs?: undefined | undefined;
|
|
1535
|
+
data?: undefined | undefined;
|
|
1536
|
+
error?: undefined | undefined;
|
|
1537
|
+
requestId?: undefined | undefined;
|
|
1538
1538
|
endpointName?: string | undefined;
|
|
1539
|
-
startedTimeStamp?: undefined;
|
|
1540
|
-
fulfilledTimeStamp?: undefined;
|
|
1539
|
+
startedTimeStamp?: undefined | undefined;
|
|
1540
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1541
1541
|
} & {
|
|
1542
1542
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1543
1543
|
isUninitialized: true;
|
|
@@ -1600,13 +1600,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1600
1600
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1601
1601
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1602
1602
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1603
|
-
originalArgs?: undefined;
|
|
1604
|
-
data?: undefined;
|
|
1605
|
-
error?: undefined;
|
|
1606
|
-
requestId?: undefined;
|
|
1603
|
+
originalArgs?: undefined | undefined;
|
|
1604
|
+
data?: undefined | undefined;
|
|
1605
|
+
error?: undefined | undefined;
|
|
1606
|
+
requestId?: undefined | undefined;
|
|
1607
1607
|
endpointName?: string | undefined;
|
|
1608
|
-
startedTimeStamp?: undefined;
|
|
1609
|
-
fulfilledTimeStamp?: undefined;
|
|
1608
|
+
startedTimeStamp?: undefined | undefined;
|
|
1609
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1610
1610
|
} & {
|
|
1611
1611
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1612
1612
|
isUninitialized: true;
|
|
@@ -1665,13 +1665,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1665
1665
|
} & {
|
|
1666
1666
|
resultFunc: (resultFuncArgs_0: ({
|
|
1667
1667
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1668
|
-
originalArgs?: undefined;
|
|
1669
|
-
data?: undefined;
|
|
1670
|
-
error?: undefined;
|
|
1671
|
-
requestId?: undefined;
|
|
1668
|
+
originalArgs?: undefined | undefined;
|
|
1669
|
+
data?: undefined | undefined;
|
|
1670
|
+
error?: undefined | undefined;
|
|
1671
|
+
requestId?: undefined | undefined;
|
|
1672
1672
|
endpointName?: string | undefined;
|
|
1673
|
-
startedTimeStamp?: undefined;
|
|
1674
|
-
fulfilledTimeStamp?: undefined;
|
|
1673
|
+
startedTimeStamp?: undefined | undefined;
|
|
1674
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1675
1675
|
} & {
|
|
1676
1676
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1677
1677
|
isUninitialized: true;
|
|
@@ -1725,13 +1725,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1725
1725
|
isError: true;
|
|
1726
1726
|
})) => ({
|
|
1727
1727
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1728
|
-
originalArgs?: undefined;
|
|
1729
|
-
data?: undefined;
|
|
1730
|
-
error?: undefined;
|
|
1731
|
-
requestId?: undefined;
|
|
1728
|
+
originalArgs?: undefined | undefined;
|
|
1729
|
+
data?: undefined | undefined;
|
|
1730
|
+
error?: undefined | undefined;
|
|
1731
|
+
requestId?: undefined | undefined;
|
|
1732
1732
|
endpointName?: string | undefined;
|
|
1733
|
-
startedTimeStamp?: undefined;
|
|
1734
|
-
fulfilledTimeStamp?: undefined;
|
|
1733
|
+
startedTimeStamp?: undefined | undefined;
|
|
1734
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1735
1735
|
} & {
|
|
1736
1736
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1737
1737
|
isUninitialized: true;
|
|
@@ -1786,13 +1786,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1786
1786
|
});
|
|
1787
1787
|
memoizedResultFunc: ((resultFuncArgs_0: ({
|
|
1788
1788
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1789
|
-
originalArgs?: undefined;
|
|
1790
|
-
data?: undefined;
|
|
1791
|
-
error?: undefined;
|
|
1792
|
-
requestId?: undefined;
|
|
1789
|
+
originalArgs?: undefined | undefined;
|
|
1790
|
+
data?: undefined | undefined;
|
|
1791
|
+
error?: undefined | undefined;
|
|
1792
|
+
requestId?: undefined | undefined;
|
|
1793
1793
|
endpointName?: string | undefined;
|
|
1794
|
-
startedTimeStamp?: undefined;
|
|
1795
|
-
fulfilledTimeStamp?: undefined;
|
|
1794
|
+
startedTimeStamp?: undefined | undefined;
|
|
1795
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1796
1796
|
} & {
|
|
1797
1797
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1798
1798
|
isUninitialized: true;
|
|
@@ -1846,13 +1846,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1846
1846
|
isError: true;
|
|
1847
1847
|
})) => ({
|
|
1848
1848
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1849
|
-
originalArgs?: undefined;
|
|
1850
|
-
data?: undefined;
|
|
1851
|
-
error?: undefined;
|
|
1852
|
-
requestId?: undefined;
|
|
1849
|
+
originalArgs?: undefined | undefined;
|
|
1850
|
+
data?: undefined | undefined;
|
|
1851
|
+
error?: undefined | undefined;
|
|
1852
|
+
requestId?: undefined | undefined;
|
|
1853
1853
|
endpointName?: string | undefined;
|
|
1854
|
-
startedTimeStamp?: undefined;
|
|
1855
|
-
fulfilledTimeStamp?: undefined;
|
|
1854
|
+
startedTimeStamp?: undefined | undefined;
|
|
1855
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1856
1856
|
} & {
|
|
1857
1857
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1858
1858
|
isUninitialized: true;
|
|
@@ -1911,13 +1911,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1911
1911
|
};
|
|
1912
1912
|
lastResult: () => ({
|
|
1913
1913
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1914
|
-
originalArgs?: undefined;
|
|
1915
|
-
data?: undefined;
|
|
1916
|
-
error?: undefined;
|
|
1917
|
-
requestId?: undefined;
|
|
1914
|
+
originalArgs?: undefined | undefined;
|
|
1915
|
+
data?: undefined | undefined;
|
|
1916
|
+
error?: undefined | undefined;
|
|
1917
|
+
requestId?: undefined | undefined;
|
|
1918
1918
|
endpointName?: string | undefined;
|
|
1919
|
-
startedTimeStamp?: undefined;
|
|
1920
|
-
fulfilledTimeStamp?: undefined;
|
|
1919
|
+
startedTimeStamp?: undefined | undefined;
|
|
1920
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1921
1921
|
} & {
|
|
1922
1922
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1923
1923
|
isUninitialized: true;
|
|
@@ -1980,13 +1980,13 @@ export declare const selectPaymodelStatus: ((state: import("@reduxjs/toolkit/que
|
|
|
1980
1980
|
readonly terminateWorkspace: import("@reduxjs/toolkit/query").MutationDefinition<void, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "Workspace" | "PayModel", void, "gen3Services">;
|
|
1981
1981
|
}, "Workspace" | "PayModel", "gen3Services">) => ({
|
|
1982
1982
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1983
|
-
originalArgs?: undefined;
|
|
1984
|
-
data?: undefined;
|
|
1985
|
-
error?: undefined;
|
|
1986
|
-
requestId?: undefined;
|
|
1983
|
+
originalArgs?: undefined | undefined;
|
|
1984
|
+
data?: undefined | undefined;
|
|
1985
|
+
error?: undefined | undefined;
|
|
1986
|
+
requestId?: undefined | undefined;
|
|
1987
1987
|
endpointName?: string | undefined;
|
|
1988
|
-
startedTimeStamp?: undefined;
|
|
1989
|
-
fulfilledTimeStamp?: undefined;
|
|
1988
|
+
startedTimeStamp?: undefined | undefined;
|
|
1989
|
+
fulfilledTimeStamp?: undefined | undefined;
|
|
1990
1990
|
} & {
|
|
1991
1991
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1992
1992
|
isUninitialized: true;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export declare const HTTPErrorMessages: Record<number, string>;
|
|
2
2
|
export declare class HTTPError extends Error {
|
|
3
3
|
status: number;
|
|
4
|
-
responseData?: any;
|
|
5
|
-
constructor(status: number, message: string, responseData?: any);
|
|
4
|
+
responseData?: any | undefined;
|
|
5
|
+
constructor(status: number, message: string, responseData?: any | undefined);
|
|
6
6
|
}
|
|
7
7
|
interface DownloadFromFenceParameters {
|
|
8
8
|
guid: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../src/utils/fetch.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA4CpD,CAAC;AAEF,qBAAa,SAAU,SAAQ,KAAK;IAEzB,MAAM,EAAE,MAAM;IAEd,YAAY,CAAC,EAAE,GAAG;gBAFlB,MAAM,EAAE,MAAM,EACrB,OAAO,EAAE,MAAM,EACR,YAAY,CAAC,EAAE,GAAG;CAK5B;AAED,UAAU,2BAA2B;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAC9B,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,GAAG,SAAS,KAAK,IAAI,CAAC;IAC7C,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,eAAO,MAAM,sBAAsB,uCAKhC,2BAA2B,iBAgD7B,CAAC"}
|
|
1
|
+
{"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../../src/utils/fetch.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CA4CpD,CAAC;AAEF,qBAAa,SAAU,SAAQ,KAAK;IAEzB,MAAM,EAAE,MAAM;IAEd,YAAY,CAAC,EAAE,GAAG;gBAFlB,MAAM,EAAE,MAAM,EACrB,OAAO,EAAE,MAAM,EACR,YAAY,CAAC,EAAE,GAAG,YAAA;CAK5B;AAED,UAAU,2BAA2B;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,CAAC,IAAI,EAAE,IAAI,KAAK,IAAI,CAAC;IAC9B,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,GAAG,SAAS,KAAK,IAAI,CAAC;IAC7C,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,WAAW,CAAC;CACtB;AAED,eAAO,MAAM,sBAAsB,uCAKhC,2BAA2B,iBAgD7B,CAAC"}
|
package/dist/esm/index.js
CHANGED
|
@@ -36,12 +36,12 @@ const GEN3_WTS_API = process.env.NEXT_PUBLIC_GEN3_WTS_API || `${GEN3_API}/wts`;
|
|
|
36
36
|
const GEN3_DATA_LIBRARY_API = process.env.NEXT_PUBLIC_GEN3_DATA_LIBRARY_API || `${GEN3_API}/library/lists`;
|
|
37
37
|
const GEN3_CROSSWALK_API = process.env.NEXT_PUBLIC_GEN3_CROSSWALK_API || `${GEN3_API}/mds`;
|
|
38
38
|
const GEN3_SOWER_API = process.env.NEXT_PUBLIC_GEN3_SOWER_API || `${GEN3_API}/jobs`;
|
|
39
|
-
var Accessibility
|
|
40
|
-
(function(Accessibility) {
|
|
39
|
+
var Accessibility = /*#__PURE__*/ function(Accessibility) {
|
|
41
40
|
Accessibility["ACCESSIBLE"] = "accessible";
|
|
42
41
|
Accessibility["UNACCESSIBLE"] = "unaccessible";
|
|
43
42
|
Accessibility["ALL"] = "all";
|
|
44
|
-
|
|
43
|
+
return Accessibility;
|
|
44
|
+
}({});
|
|
45
45
|
const FILE_DELIMITERS = {
|
|
46
46
|
tsv: '\t',
|
|
47
47
|
csv: ','
|
|
@@ -619,14 +619,18 @@ const slice$2 = createSlice({
|
|
|
619
619
|
const drsHostnamesReducer = slice$2.reducer;
|
|
620
620
|
const { setDRSHostnames } = slice$2.actions;
|
|
621
621
|
|
|
622
|
-
|
|
623
|
-
|
|
622
|
+
/**
|
|
623
|
+
* Defines the modals slice of the Redux store.
|
|
624
|
+
* This slice is used to control the display of standard Gen3 modals.
|
|
625
|
+
* and can be extended to add custom modals by representing them as strings.
|
|
626
|
+
*/ var Modals = /*#__PURE__*/ function(Modals) {
|
|
624
627
|
Modals["FirstTimeModal"] = "FirstTimeModal";
|
|
625
628
|
Modals["SessionExpireModal"] = "SessionExpireModal";
|
|
626
629
|
Modals["NoAccessModal"] = "NoAccessModal";
|
|
627
630
|
Modals["CreateCredentialsAPIKeyModal"] = "CreateCredentialsAPIKeyModal";
|
|
628
631
|
Modals["GeneralErrorModal"] = "GeneralErrorModal";
|
|
629
|
-
|
|
632
|
+
return Modals;
|
|
633
|
+
}({});
|
|
630
634
|
const initialState$2 = {
|
|
631
635
|
currentModal: null
|
|
632
636
|
};
|
|
@@ -1367,8 +1371,9 @@ createSelector([
|
|
|
1367
1371
|
(_, rootObjectId)=>rootObjectId
|
|
1368
1372
|
], (dataLibrary, rootObjectId)=>dataLibrary[rootObjectId] || []);
|
|
1369
1373
|
|
|
1370
|
-
|
|
1371
|
-
|
|
1374
|
+
/**
|
|
1375
|
+
* Workspace Pod status
|
|
1376
|
+
*/ var WorkspaceStatus = /*#__PURE__*/ function(WorkspaceStatus) {
|
|
1372
1377
|
WorkspaceStatus["Launching"] = "Launching";
|
|
1373
1378
|
WorkspaceStatus["Running"] = "Running";
|
|
1374
1379
|
WorkspaceStatus["Terminating"] = "Terminating";
|
|
@@ -1376,28 +1381,31 @@ var WorkspaceStatus;
|
|
|
1376
1381
|
WorkspaceStatus["NotFound"] = "Not Found";
|
|
1377
1382
|
WorkspaceStatus["Errored"] = "Errored";
|
|
1378
1383
|
WorkspaceStatus["StatusError"] = "Status Error";
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1384
|
+
return WorkspaceStatus;
|
|
1385
|
+
}({});
|
|
1386
|
+
/**
|
|
1387
|
+
* requested state of pod, either by user or workspace monitor
|
|
1388
|
+
*/ var RequestedWorkspaceStatus = /*#__PURE__*/ function(RequestedWorkspaceStatus) {
|
|
1382
1389
|
RequestedWorkspaceStatus["Launch"] = "Launch";
|
|
1383
1390
|
RequestedWorkspaceStatus["Terminate"] = "Terminate";
|
|
1384
1391
|
RequestedWorkspaceStatus["Unset"] = "Unset";
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1392
|
+
return RequestedWorkspaceStatus;
|
|
1393
|
+
}({});
|
|
1394
|
+
var PodConditionType = /*#__PURE__*/ function(PodConditionType) {
|
|
1388
1395
|
PodConditionType["PodScheduled"] = "PodScheduled";
|
|
1389
1396
|
PodConditionType["Initialized"] = "Initialized";
|
|
1390
1397
|
PodConditionType["ContainersReady"] = "ContainersReady";
|
|
1391
1398
|
PodConditionType["PodReadyToStartContainers"] = "PodReadyToStartContainers";
|
|
1392
1399
|
PodConditionType["ProxyConnected"] = "ProxyConnected";
|
|
1393
1400
|
PodConditionType["Ready"] = "Ready";
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1401
|
+
return PodConditionType;
|
|
1402
|
+
}({});
|
|
1403
|
+
var PodStatus = /*#__PURE__*/ function(PodStatus) {
|
|
1397
1404
|
PodStatus["True"] = "True";
|
|
1398
1405
|
PodStatus["False"] = "False";
|
|
1399
1406
|
PodStatus["Unknown"] = "Unknown";
|
|
1400
|
-
|
|
1407
|
+
return PodStatus;
|
|
1408
|
+
}({});
|
|
1401
1409
|
|
|
1402
1410
|
// Using the built-in Date object
|
|
1403
1411
|
const getCurrentTimestamp = ()=>{
|
|
@@ -2328,7 +2336,7 @@ const coreStore = configureStore({
|
|
|
2328
2336
|
setupListeners(coreStore.dispatch);
|
|
2329
2337
|
|
|
2330
2338
|
const isNotDefined = (x)=>{
|
|
2331
|
-
return x === undefined || x === null || x ===
|
|
2339
|
+
return x === undefined || x === null || x === undefined;
|
|
2332
2340
|
};
|
|
2333
2341
|
const isObject = (x)=>{
|
|
2334
2342
|
return typeof x === 'object';
|