@gen3/core 0.12.47 → 0.12.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.
- package/dist/cjs/index.js +7 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/dts/features/user/index.d.ts +5 -5
- package/dist/dts/features/user/index.d.ts.map +1 -1
- package/dist/dts/features/user/userSliceRTK.d.ts +4 -0
- package/dist/dts/features/user/userSliceRTK.d.ts.map +1 -1
- package/dist/esm/index.js +7 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +5 -1
- package/package.json +2 -2
package/dist/cjs/index.js
CHANGED
|
@@ -274,6 +274,12 @@ const selectHeadersWithCSRFToken = toolkit.createSelector([
|
|
|
274
274
|
'X-CSRF-Token': csrfToken
|
|
275
275
|
}
|
|
276
276
|
}));
|
|
277
|
+
const useGetUserDetailsRequestStatus = ()=>userAuthApi.endpoints.fetchUserDetails.useQueryState(undefined, {
|
|
278
|
+
selectFromResult: ({ isFetching, isError })=>({
|
|
279
|
+
isFetching,
|
|
280
|
+
isError
|
|
281
|
+
})
|
|
282
|
+
});
|
|
277
283
|
|
|
278
284
|
// function readCookie(name: string): string | undefined {
|
|
279
285
|
// const raw = document.cookie
|
|
@@ -7276,6 +7282,7 @@ exports.useGetSubAggsQuery = useGetSubAggsQuery;
|
|
|
7276
7282
|
exports.useGetSubmissionGraphQLQuery = useGetSubmissionGraphQLQuery;
|
|
7277
7283
|
exports.useGetSubmissionsQuery = useGetSubmissionsQuery;
|
|
7278
7284
|
exports.useGetTagsQuery = useGetTagsQuery;
|
|
7285
|
+
exports.useGetUserDetailsRequestStatus = useGetUserDetailsRequestStatus;
|
|
7279
7286
|
exports.useGetWorkspaceOptionsQuery = useGetWorkspaceOptionsQuery;
|
|
7280
7287
|
exports.useGetWorkspacePayModelsQuery = useGetWorkspacePayModelsQuery;
|
|
7281
7288
|
exports.useGetWorkspaceStatusQuery = useGetWorkspaceStatusQuery;
|