@gen3/core 0.10.54 → 0.10.56

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 (40) hide show
  1. package/dist/cjs/index.js +1866 -1057
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/dts/constants.d.ts +1 -0
  4. package/dist/dts/features/aiSearch/aiSearchSlice.d.ts +10 -10
  5. package/dist/dts/features/authz/authzMappingSlice.d.ts +16 -16
  6. package/dist/dts/features/dataLibrary/dataLibraryApi.d.ts +1085 -0
  7. package/dist/dts/features/dataLibrary/dataLibraryIndexDB.d.ts +34 -0
  8. package/dist/dts/features/dataLibrary/dataLibrarySelectionSlice.d.ts +30 -0
  9. package/dist/dts/features/dataLibrary/index.d.ts +6 -0
  10. package/dist/dts/features/dataLibrary/types.d.ts +86 -0
  11. package/dist/dts/features/dataLibrary/useDataLibrary.d.ts +13 -0
  12. package/dist/dts/features/dataLibrary/utils.d.ts +13 -0
  13. package/dist/dts/features/download/downloadStatusApi.d.ts +11 -11
  14. package/dist/dts/features/fence/credentialsApi.d.ts +30 -30
  15. package/dist/dts/features/fence/fenceApi.d.ts +263 -1
  16. package/dist/dts/features/fence/index.d.ts +2 -2
  17. package/dist/dts/features/filters/types.d.ts +1 -0
  18. package/dist/dts/features/gen3Apps/Gen3AppRTKQ.d.ts +1 -1
  19. package/dist/dts/features/graphQL/graphQLSlice.d.ts +1 -1
  20. package/dist/dts/features/guppy/guppyDownloadSlice.d.ts +10 -10
  21. package/dist/dts/features/guppy/guppySlice.d.ts +1 -0
  22. package/dist/dts/features/guppy/tests/guppySlice.unit.test.d.ts +1 -0
  23. package/dist/dts/features/guppy/tests/jsonpath.unit.test.d.ts +1 -0
  24. package/dist/dts/features/sower/sowerApi.d.ts +10 -10
  25. package/dist/dts/features/submission/submissionApi.d.ts +1 -1
  26. package/dist/dts/features/user/hooks.d.ts +1 -1
  27. package/dist/dts/features/user/userSliceRTK.d.ts +47 -28
  28. package/dist/dts/features/user/utils.d.ts +9 -0
  29. package/dist/dts/features/workspace/workspaceApi.d.ts +58 -58
  30. package/dist/dts/hooks.d.ts +2 -0
  31. package/dist/dts/index.d.ts +2 -0
  32. package/dist/dts/reducers.d.ts +2 -0
  33. package/dist/dts/store.d.ts +2 -0
  34. package/dist/dts/utils/fetch.d.ts +17 -0
  35. package/dist/dts/utils/index.d.ts +3 -1
  36. package/dist/dts/utils/url.d.ts +7 -0
  37. package/dist/esm/index.js +1844 -1061
  38. package/dist/esm/index.js.map +1 -1
  39. package/dist/index.d.ts +1325 -156
  40. package/package.json +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gen3/core",
3
- "version": "0.10.54",
3
+ "version": "0.10.56",
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",
@@ -27,7 +27,7 @@
27
27
  "lint": "eslint .",
28
28
  "compile": "tsc",
29
29
  "clean": "rm -rf dist",
30
- "types": "tsc --emitDeclarationOnly",
30
+ "types": "tsc --emitDeclarationOnly --skipLibCheck",
31
31
  "build": "npm run clean && npm run compile && rollup --config rollup.config.mjs",
32
32
  "build:clean": "npm run clean && npm run compile && npm run types && rollup --config rollup.config.mjs",
33
33
  "build:watch": "npm run compile && npm run build -- --watch",
@@ -48,7 +48,6 @@
48
48
  "@types/fastestsmallesttextencoderdecoder": "^1.0.2",
49
49
  "@types/flat": "^5.0.3",
50
50
  "@types/isomorphic-fetch": "^0.0.36",
51
- "@types/jsonpath-plus": "5.0.5",
52
51
  "@types/lodash": "^4.14.191",
53
52
  "@types/papaparse": "^5.3.14",
54
53
  "@types/uuid": "^9.0.0"