@gen3/core 0.10.44 → 0.10.47
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 +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/app/store.d.ts +1 -1
- package/dist/dts/features/dataLibrary/types.d.ts +4 -0
- package/dist/dts/features/download/downloadStatusApi.d.ts +5 -5
- package/dist/dts/features/gen3/gen3Api.d.ts +1 -1
- package/dist/dts/features/guppy/guppySlice.d.ts +1 -1
- package/dist/dts/features/user/userSlice.d.ts +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +1 -1
- package/dist/dts/reducers.d.ts +1 -1
- package/dist/dts/store.d.ts +5 -5
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +40 -42
- package/package.json +4 -5
package/dist/cjs/index.js
CHANGED
|
@@ -973,7 +973,7 @@ const HasEnoughData = (data, keys, limit)=>{
|
|
|
973
973
|
to: toData
|
|
974
974
|
}
|
|
975
975
|
];
|
|
976
|
-
callback
|
|
976
|
+
if (callback) callback();
|
|
977
977
|
return result;
|
|
978
978
|
});
|
|
979
979
|
}
|
|
@@ -1208,7 +1208,7 @@ const convertFilterSetToGqlFilter = (fs, toplevelOp = 'and')=>{
|
|
|
1208
1208
|
this.handleGreaterThan = (op)=>op.operand;
|
|
1209
1209
|
this.handleLessThan = (op)=>op.operand;
|
|
1210
1210
|
this.handleLessThanOrEquals = (op)=>op.operand;
|
|
1211
|
-
this.handleIntersection = (
|
|
1211
|
+
this.handleIntersection = (_arg)=>undefined;
|
|
1212
1212
|
this.handleUnion = (_)=>undefined;
|
|
1213
1213
|
this.handleNestedFilter = (_)=>undefined;
|
|
1214
1214
|
}
|