@gen3/core 0.11.38 → 0.11.39
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 +3 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/guppy/guppyDownloadSlice.d.ts +1 -1
- package/dist/dts/features/guppy/guppyDownloadSlice.d.ts.map +1 -1
- package/dist/dts/features/guppy/index.d.ts +2 -7
- package/dist/dts/features/guppy/index.d.ts.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +11 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -4966,7 +4966,7 @@ const { useGraphQLQuery } = graphQLAPI;
|
|
|
4966
4966
|
* @param endpoints - Resolver function which configures the query with
|
|
4967
4967
|
* type, filter, accessibility, fields, and sort arguments
|
|
4968
4968
|
* @returns: A guppy download API for fetching bulk metadata
|
|
4969
|
-
*/ const
|
|
4969
|
+
*/ const guppyDownloadApi = gen3Api.injectEndpoints({
|
|
4970
4970
|
endpoints: (builder)=>({
|
|
4971
4971
|
downloadFromGuppy: builder.query({
|
|
4972
4972
|
query: ({ type, filter, accessibility, fields, sort })=>{
|
|
@@ -4992,7 +4992,7 @@ const { useGraphQLQuery } = graphQLAPI;
|
|
|
4992
4992
|
})
|
|
4993
4993
|
})
|
|
4994
4994
|
});
|
|
4995
|
-
const { useDownloadFromGuppyQuery, useLazyDownloadFromGuppyQuery } =
|
|
4995
|
+
const { useDownloadFromGuppyQuery, useLazyDownloadFromGuppyQuery } = guppyDownloadApi;
|
|
4996
4996
|
|
|
4997
4997
|
const TAGS = 'manifest';
|
|
4998
4998
|
const manifestTags = gen3Api.enhanceEndpoints({
|
|
@@ -5918,6 +5918,7 @@ exports.guppyAPISliceMiddleware = guppyAPISliceMiddleware;
|
|
|
5918
5918
|
exports.guppyApi = guppyApi;
|
|
5919
5919
|
exports.guppyApiReducer = guppyApiReducer;
|
|
5920
5920
|
exports.guppyApiSliceReducerPath = guppyApiSliceReducerPath;
|
|
5921
|
+
exports.guppyDownloadApi = guppyDownloadApi;
|
|
5921
5922
|
exports.handleGqlOperation = handleGqlOperation;
|
|
5922
5923
|
exports.handleOperation = handleOperation;
|
|
5923
5924
|
exports.hideModal = hideModal;
|