@gen3/core 0.10.47 → 0.10.49

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.
Files changed (35) hide show
  1. package/dist/cjs/index.js +198 -63
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/dts/features/aiSearch/aiSearchSlice.d.ts +430 -6
  4. package/dist/dts/features/app/store.d.ts +3 -1
  5. package/dist/dts/features/authz/authzMappingSlice.d.ts +331 -61
  6. package/dist/dts/features/cohort/cohortSlice.d.ts +6 -6
  7. package/dist/dts/features/download/downloadStatusApi.d.ts +269 -5
  8. package/dist/dts/features/fence/credentialsApi.d.ts +619 -7
  9. package/dist/dts/features/fence/fenceApi.d.ts +136 -4
  10. package/dist/dts/features/fence/jwtApi.d.ts +136 -4
  11. package/dist/dts/features/gen3/gen3Api.d.ts +1 -1
  12. package/dist/dts/features/gen3Apps/Gen3App.d.ts +10 -9
  13. package/dist/dts/features/gen3Apps/Gen3AppRTKQ.d.ts +18 -0
  14. package/dist/dts/features/gen3Apps/constants.d.ts +1 -0
  15. package/dist/dts/features/gen3Apps/gen3AppsSlice.d.ts +2 -2
  16. package/dist/dts/features/gen3Apps/index.d.ts +4 -3
  17. package/dist/dts/features/graphQL/graphQLSlice.d.ts +137 -5
  18. package/dist/dts/features/guppy/guppyApi.d.ts +2 -2
  19. package/dist/dts/features/guppy/guppyDownloadSlice.d.ts +164 -4
  20. package/dist/dts/features/guppy/guppySlice.d.ts +2012 -15
  21. package/dist/dts/features/metadata/metadataSlice.d.ts +930 -9
  22. package/dist/dts/features/submission/submissionApi.d.ts +920 -2
  23. package/dist/dts/features/user/externalLoginsSlice.d.ts +527 -5
  24. package/dist/dts/features/user/hooks.d.ts +1 -1
  25. package/dist/dts/features/user/userSliceRTK.d.ts +1386 -189
  26. package/dist/dts/features/workspace/workspacesSlice.d.ts +402 -6
  27. package/dist/dts/hooks.d.ts +26 -13
  28. package/dist/dts/reducers.d.ts +25 -5
  29. package/dist/dts/store.d.ts +25 -34
  30. package/dist/esm/index.js +177 -61
  31. package/dist/esm/index.js.map +1 -1
  32. package/dist/index.d.ts +8788 -912
  33. package/package.json +4 -3
  34. package/dist/dts/api.d.ts +0 -8
  35. package/dist/dts/features/dataLibrary/types.d.ts +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gen3/core",
3
- "version": "0.10.47",
3
+ "version": "0.10.49",
4
4
  "author": "CTDS",
5
5
  "description": "Core module for gen3 frontend. Provides an interface for interacting with the gen3 API and a redux store for managing state.",
6
6
  "license": "Apache-2.0",
@@ -54,11 +54,12 @@
54
54
  "@types/uuid": "^9.0.0"
55
55
  },
56
56
  "dependencies": {
57
- "@reduxjs/toolkit": "1.9.5",
57
+ "@reduxjs/toolkit": "^2.2.8",
58
58
  "flat": "^6.0.1",
59
59
  "papaparse": "^5.4.1",
60
60
  "queue": "6.0.2",
61
- "react-redux": "^8.1.0",
61
+ "react-redux": "^9.1.2",
62
+ "redux": "^5.0.1",
62
63
  "redux-persist": "^6.0.0",
63
64
  "swr": "^2.2.5",
64
65
  "uuid": "^9.0.1"
package/dist/dts/api.d.ts DELETED
@@ -1,8 +0,0 @@
1
- import { CreateApi, ApiModules } from '@reduxjs/toolkit/query/react';
2
- /**
3
- * Creates a custom Redux Toolkit core API
4
- * See: https://redux-toolkit.js.org/rtk-query/usage/customizing-create-api
5
- * @returns: created core API.
6
- */
7
- declare const coreCreateApi: CreateApi<keyof ApiModules<any, any, any, any>>;
8
- export { coreCreateApi };
@@ -1,4 +0,0 @@
1
- export const __esModule: boolean;
2
- export function isFileItem(item: any): any;
3
- export function isAdditionalDataItem(item: any): boolean;
4
- export function isCohortItem(item: any): any;