@replyke/core 5.1.5-beta.6 → 5.1.5-beta.8
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/context/index.d.ts +0 -1
- package/dist/cjs/context/index.js +1 -6
- package/dist/cjs/context/index.js.map +1 -1
- package/dist/cjs/hooks/app-notifications-redux/index.d.ts +1 -1
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsActionsRedux.d.ts +1 -0
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsActionsRedux.js +67 -9
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsActionsRedux.js.map +1 -1
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsDataRedux.d.ts +15 -1
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsDataRedux.js +25 -9
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsDataRedux.js.map +1 -1
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsRedux.d.ts +1 -1
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsRedux.js +12 -4
- package/dist/cjs/hooks/app-notifications-redux/useAppNotificationsRedux.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -2
- package/dist/cjs/index.js +2 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/interfaces/models/AppNotification.d.ts +1 -1
- package/dist/cjs/legacy/context/app-notifications-context.js.map +1 -0
- package/dist/cjs/{context → legacy/context}/auth-context.js +1 -1
- package/dist/cjs/legacy/context/auth-context.js.map +1 -0
- package/dist/cjs/legacy/hooks/app-notifications/index.js.map +1 -0
- package/dist/cjs/legacy/hooks/app-notifications/useAppNotifications.js.map +1 -0
- package/dist/{esm → cjs/legacy}/hooks/app-notifications/useAppNotificationsData.d.ts +1 -1
- package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useAppNotificationsData.js +2 -2
- package/dist/cjs/legacy/hooks/app-notifications/useAppNotificationsData.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useCountUnreadNotifications.js +3 -3
- package/dist/cjs/legacy/hooks/app-notifications/useCountUnreadNotifications.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useFetchAppNotifications.d.ts +1 -1
- package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useFetchAppNotifications.js +3 -3
- package/dist/cjs/legacy/hooks/app-notifications/useFetchAppNotifications.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useMarkNotificationAsRead.js +3 -3
- package/dist/cjs/legacy/hooks/app-notifications/useMarkNotificationAsRead.js.map +1 -0
- package/dist/cjs/legacy/hooks/auth/index.js.map +1 -0
- package/dist/cjs/legacy/hooks/auth/useAuth.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useAuthData.d.ts +1 -1
- package/dist/cjs/{hooks → legacy/hooks}/auth/useAuthData.js +2 -2
- package/dist/cjs/legacy/hooks/auth/useAuthData.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useChangePassword.js +3 -3
- package/dist/cjs/legacy/hooks/auth/useChangePassword.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useRequestNewAccessToken.js +3 -3
- package/dist/cjs/legacy/hooks/auth/useRequestNewAccessToken.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useSignInWithEmailAndPassword.js +3 -3
- package/dist/cjs/legacy/hooks/auth/useSignInWithEmailAndPassword.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useSignOut.js +3 -3
- package/dist/cjs/legacy/hooks/auth/useSignOut.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useSignUpWithEmailAndPassword.js +3 -3
- package/dist/cjs/legacy/hooks/auth/useSignUpWithEmailAndPassword.js.map +1 -0
- package/dist/cjs/{hooks → legacy/hooks}/auth/useVerifyExternalUser.js +2 -2
- package/dist/cjs/legacy/hooks/auth/useVerifyExternalUser.js.map +1 -0
- package/dist/cjs/store/api/appNotificationsApi.d.ts +334 -0
- package/dist/cjs/store/api/appNotificationsApi.js +59 -18
- package/dist/cjs/store/api/appNotificationsApi.js.map +1 -1
- package/dist/cjs/store/index.js +26 -3
- package/dist/cjs/store/index.js.map +1 -1
- package/dist/cjs/store/slices/appNotificationsSlice.d.ts +2 -1
- package/dist/cjs/store/slices/appNotificationsSlice.js +10 -2
- package/dist/cjs/store/slices/appNotificationsSlice.js.map +1 -1
- package/dist/esm/context/index.d.ts +0 -1
- package/dist/esm/context/index.js +0 -4
- package/dist/esm/context/index.js.map +1 -1
- package/dist/esm/hooks/app-notifications-redux/index.d.ts +1 -1
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsActionsRedux.d.ts +1 -0
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsActionsRedux.js +69 -11
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsActionsRedux.js.map +1 -1
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsDataRedux.d.ts +15 -1
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsDataRedux.js +25 -9
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsDataRedux.js.map +1 -1
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsRedux.d.ts +1 -1
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsRedux.js +12 -4
- package/dist/esm/hooks/app-notifications-redux/useAppNotificationsRedux.js.map +1 -1
- package/dist/esm/index.d.ts +1 -2
- package/dist/esm/index.js +1 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/interfaces/models/AppNotification.d.ts +1 -1
- package/dist/esm/legacy/context/app-notifications-context.js.map +1 -0
- package/dist/esm/{context → legacy/context}/auth-context.js +1 -1
- package/dist/esm/legacy/context/auth-context.js.map +1 -0
- package/dist/esm/legacy/hooks/app-notifications/index.js.map +1 -0
- package/dist/esm/legacy/hooks/app-notifications/useAppNotifications.js.map +1 -0
- package/dist/{cjs → esm/legacy}/hooks/app-notifications/useAppNotificationsData.d.ts +1 -1
- package/dist/esm/{hooks → legacy/hooks}/app-notifications/useAppNotificationsData.js +2 -2
- package/dist/esm/legacy/hooks/app-notifications/useAppNotificationsData.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/app-notifications/useCountUnreadNotifications.js +3 -3
- package/dist/esm/legacy/hooks/app-notifications/useCountUnreadNotifications.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/app-notifications/useFetchAppNotifications.d.ts +1 -1
- package/dist/esm/{hooks → legacy/hooks}/app-notifications/useFetchAppNotifications.js +3 -3
- package/dist/esm/legacy/hooks/app-notifications/useFetchAppNotifications.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/app-notifications/useMarkNotificationAsRead.js +3 -3
- package/dist/esm/legacy/hooks/app-notifications/useMarkNotificationAsRead.js.map +1 -0
- package/dist/esm/legacy/hooks/auth/index.js.map +1 -0
- package/dist/esm/legacy/hooks/auth/useAuth.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useAuthData.d.ts +1 -1
- package/dist/esm/{hooks → legacy/hooks}/auth/useAuthData.js +2 -2
- package/dist/esm/legacy/hooks/auth/useAuthData.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useChangePassword.js +3 -3
- package/dist/esm/legacy/hooks/auth/useChangePassword.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useRequestNewAccessToken.js +3 -3
- package/dist/esm/legacy/hooks/auth/useRequestNewAccessToken.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useSignInWithEmailAndPassword.js +3 -3
- package/dist/esm/legacy/hooks/auth/useSignInWithEmailAndPassword.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useSignOut.js +3 -3
- package/dist/esm/legacy/hooks/auth/useSignOut.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useSignUpWithEmailAndPassword.js +3 -3
- package/dist/esm/legacy/hooks/auth/useSignUpWithEmailAndPassword.js.map +1 -0
- package/dist/esm/{hooks → legacy/hooks}/auth/useVerifyExternalUser.js +2 -2
- package/dist/esm/legacy/hooks/auth/useVerifyExternalUser.js.map +1 -0
- package/dist/esm/store/api/appNotificationsApi.d.ts +334 -0
- package/dist/esm/store/api/appNotificationsApi.js +58 -17
- package/dist/esm/store/api/appNotificationsApi.js.map +1 -1
- package/dist/esm/store/index.js +26 -3
- package/dist/esm/store/index.js.map +1 -1
- package/dist/esm/store/slices/appNotificationsSlice.d.ts +2 -1
- package/dist/esm/store/slices/appNotificationsSlice.js +9 -1
- package/dist/esm/store/slices/appNotificationsSlice.js.map +1 -1
- package/package.json +1 -1
- package/dist/cjs/context/app-notifications-context.js.map +0 -1
- package/dist/cjs/context/auth-context.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/index.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/useAppNotifications.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/useAppNotificationsData.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/useCountUnreadNotifications.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/useFetchAppNotifications.js.map +0 -1
- package/dist/cjs/hooks/app-notifications/useMarkNotificationAsRead.js.map +0 -1
- package/dist/cjs/hooks/auth/index.js.map +0 -1
- package/dist/cjs/hooks/auth/useAuth.js.map +0 -1
- package/dist/cjs/hooks/auth/useAuthData.js.map +0 -1
- package/dist/cjs/hooks/auth/useChangePassword.js.map +0 -1
- package/dist/cjs/hooks/auth/useRequestNewAccessToken.js.map +0 -1
- package/dist/cjs/hooks/auth/useSignInWithEmailAndPassword.js.map +0 -1
- package/dist/cjs/hooks/auth/useSignOut.js.map +0 -1
- package/dist/cjs/hooks/auth/useSignUpWithEmailAndPassword.js.map +0 -1
- package/dist/cjs/hooks/auth/useVerifyExternalUser.js.map +0 -1
- package/dist/esm/context/app-notifications-context.js.map +0 -1
- package/dist/esm/context/auth-context.js.map +0 -1
- package/dist/esm/hooks/app-notifications/index.js.map +0 -1
- package/dist/esm/hooks/app-notifications/useAppNotifications.js.map +0 -1
- package/dist/esm/hooks/app-notifications/useAppNotificationsData.js.map +0 -1
- package/dist/esm/hooks/app-notifications/useCountUnreadNotifications.js.map +0 -1
- package/dist/esm/hooks/app-notifications/useFetchAppNotifications.js.map +0 -1
- package/dist/esm/hooks/app-notifications/useMarkNotificationAsRead.js.map +0 -1
- package/dist/esm/hooks/auth/index.js.map +0 -1
- package/dist/esm/hooks/auth/useAuth.js.map +0 -1
- package/dist/esm/hooks/auth/useAuthData.js.map +0 -1
- package/dist/esm/hooks/auth/useChangePassword.js.map +0 -1
- package/dist/esm/hooks/auth/useRequestNewAccessToken.js.map +0 -1
- package/dist/esm/hooks/auth/useSignInWithEmailAndPassword.js.map +0 -1
- package/dist/esm/hooks/auth/useSignOut.js.map +0 -1
- package/dist/esm/hooks/auth/useSignUpWithEmailAndPassword.js.map +0 -1
- package/dist/esm/hooks/auth/useVerifyExternalUser.js.map +0 -1
- /package/dist/cjs/{context → legacy/context}/app-notifications-context.d.ts +0 -0
- /package/dist/cjs/{context → legacy/context}/app-notifications-context.js +0 -0
- /package/dist/cjs/{context → legacy/context}/auth-context.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/index.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/index.js +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useAppNotifications.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useAppNotifications.js +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useCountUnreadNotifications.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/app-notifications/useMarkNotificationAsRead.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/index.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/index.js +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useAuth.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useAuth.js +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useChangePassword.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useRequestNewAccessToken.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useSignInWithEmailAndPassword.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useSignOut.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useSignUpWithEmailAndPassword.d.ts +0 -0
- /package/dist/cjs/{hooks → legacy/hooks}/auth/useVerifyExternalUser.d.ts +0 -0
- /package/dist/esm/{context → legacy/context}/app-notifications-context.d.ts +0 -0
- /package/dist/esm/{context → legacy/context}/app-notifications-context.js +0 -0
- /package/dist/esm/{context → legacy/context}/auth-context.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/index.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/index.js +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/useAppNotifications.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/useAppNotifications.js +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/useCountUnreadNotifications.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/app-notifications/useMarkNotificationAsRead.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/index.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/index.js +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useAuth.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useAuth.js +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useChangePassword.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useRequestNewAccessToken.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useSignInWithEmailAndPassword.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useSignOut.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useSignUpWithEmailAndPassword.d.ts +0 -0
- /package/dist/esm/{hooks → legacy/hooks}/auth/useVerifyExternalUser.d.ts +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAppNotificationsData.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/app-notifications/useAppNotificationsData.tsx"],"names":[],"mappings":"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"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useAxiosPrivate from "
|
|
39
|
-
import useProject from "
|
|
40
|
-
import { useUserRedux } from "
|
|
38
|
+
import useAxiosPrivate from "../../../config/useAxiosPrivate";
|
|
39
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
40
|
+
import { useUserRedux } from "../../../hooks/auth-redux";
|
|
41
41
|
function useCountUnreadNotifications() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var axios = useAxiosPrivate();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useCountUnreadNotifications.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/app-notifications/useCountUnreadNotifications.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAC9D,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,SAAS,2BAA2B;IAApC,iBAsBC;IArBC,IAAM,KAAK,GAAG,eAAe,EAAE,CAAC;IACxB,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAC3B,IAAA,IAAI,GAAK,YAAY,EAAE,KAAnB,CAAoB;IAEhC,IAAM,wBAAwB,GAAG,WAAW,CAAC;;;;;oBAC3C,IAAI,CAAC,IAAI,EAAE,CAAC;wBACV,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;oBAC3C,CAAC;oBAED,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,GAAG,CAC9B,WAAI,SAAS,6BAA0B,EACvC,EAAE,eAAe,EAAE,IAAI,EAAE,CAC1B,EAAA;;oBAHK,QAAQ,GAAG,SAGhB;oBACD,sBAAO,QAAQ,CAAC,IAAc,EAAC;;;SAChC,EAAE,CAAC,SAAS,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC,CAAC;IAE7B,OAAO,wBAAwB,CAAC;AAClC,CAAC;AAED,eAAe,2BAA2B,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useAxiosPrivate from "
|
|
39
|
-
import useProject from "
|
|
40
|
-
import { useUserRedux } from "
|
|
38
|
+
import useAxiosPrivate from "../../../config/useAxiosPrivate";
|
|
39
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
40
|
+
import { useUserRedux } from "../../../hooks/auth-redux";
|
|
41
41
|
function useFetchAppNotifications() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var axios = useAxiosPrivate();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useFetchAppNotifications.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/app-notifications/useFetchAppNotifications.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAC9D,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAE5D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,SAAS,wBAAwB;IAAjC,iBAgCC;IA/BC,IAAM,KAAK,GAAG,eAAe,EAAE,CAAC;IACxB,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAC3B,IAAA,IAAI,GAAK,YAAY,EAAE,KAAnB,CAAoB;IAEhC,IAAM,qBAAqB,GAAG,WAAW,CACvC,gEAAO,EAAgD;;YAA9C,IAAI,UAAA,EAAE,KAAK,WAAA;;;;oBAClB,IAAI,CAAC,IAAI,EAAE,CAAC;wBACV,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;oBAC3C,CAAC;oBAED,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,GAAG,CAC9B,WAAI,SAAS,uBAAoB,EACjC;4BACE,MAAM,EAAE;gCACN,IAAI,MAAA;gCACJ,KAAK,OAAA;6BACN;4BACD,eAAe,EAAE,IAAI;yBACtB,CACF,EAAA;;oBATK,QAAQ,GAAG,SAShB;oBAED,sBAAO,QAAQ,CAAC,IAAgC,EAAC;;;SAClD,EACD,CAAC,SAAS,EAAE,KAAK,EAAE,IAAI,CAAC,CACzB,CAAC;IAEF,OAAO,qBAAqB,CAAC;AAC/B,CAAC;AAED,eAAe,wBAAwB,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useAxiosPrivate from "
|
|
39
|
-
import useProject from "
|
|
40
|
-
import { useUserRedux } from "
|
|
38
|
+
import useAxiosPrivate from "../../../config/useAxiosPrivate";
|
|
39
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
40
|
+
import { useUserRedux } from "../../../hooks/auth-redux";
|
|
41
41
|
function useMarkNotificationAsRead() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var axios = useAxiosPrivate();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useMarkNotificationAsRead.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/app-notifications/useMarkNotificationAsRead.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,eAAe,MAAM,iCAAiC,CAAC;AAC9D,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEzD,SAAS,yBAAyB;IAAlC,iBA6BC;IA5BC,IAAM,KAAK,GAAG,eAAe,EAAE,CAAC;IACxB,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAC3B,IAAA,IAAI,GAAK,YAAY,EAAE,KAAnB,CAAoB;IAEhC,IAAM,sBAAsB,GAAG,WAAW,CACxC,UAAO,cAAsB;;;;oBAC3B,IAAI,CAAC,IAAI,EAAE,CAAC;wBACV,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;oBAC3C,CAAC;oBAED,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAED,IAAI,CAAC,cAAc,EAAE,CAAC;wBACpB,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;oBAClD,CAAC;oBAED,qBAAM,KAAK,CAAC,KAAK,CACf,WAAI,SAAS,gCAAsB,cAAc,kBAAe,EAChE,EAAE,EACF,EAAE,eAAe,EAAE,IAAI,EAAE,CAC1B,EAAA;;oBAJD,SAIC,CAAC;;;;SACH,EACD,CAAC,SAAS,EAAE,KAAK,EAAE,IAAI,CAAC,CACzB,CAAC;IAEF,OAAO,sBAAsB,CAAC;AAChC,CAAC;AAED,eAAe,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,eAAe,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AACjF,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAC3F,OAAO,EAAE,OAAO,IAAI,6BAA6B,EAAE,MAAM,iCAAiC,CAAC;AAC3F,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AACrD,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACnE,OAAO,EAAE,OAAO,IAAI,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAuth.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useAuth.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,OAAO,CAAC;AACnC,OAAO,EAAE,WAAW,EAAqB,MAAM,4BAA4B,CAAC;AAE5E,MAAM,CAAC,OAAO,UAAU,OAAO;IAC7B,OAAO,UAAU,CAAC,WAAW,CAAC,CAAC;AACjC,CAAC"}
|
|
@@ -46,8 +46,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
46
46
|
}
|
|
47
47
|
};
|
|
48
48
|
import { useState, useEffect, useCallback } from "react";
|
|
49
|
-
import { handleError } from "
|
|
50
|
-
import { isReactNative } from "
|
|
49
|
+
import { handleError } from "../../../utils/handleError";
|
|
50
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
51
51
|
import useSignUpWithEmailAndPassword from "./useSignUpWithEmailAndPassword";
|
|
52
52
|
import useSignInWithEmailAndPassword from "./useSignInWithEmailAndPassword";
|
|
53
53
|
import useSignOut from "./useSignOut";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAuthData.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useAuthData.tsx"],"names":[],"mappings":"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"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
40
|
-
import { isReactNative } from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
41
41
|
function useChangePassword() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useChangePassword.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useChangePassword.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D,SAAS,iBAAiB;IAA1B,iBA4BC;IA3BS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,cAAc,GAAG,WAAW,CAChC,gEAAO,EAMN;YALC,QAAQ,cAAA,EACR,WAAW,iBAAA;;;;oBAKX,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAED,qBAAM,KAAK,CAAC,IAAI,CACd,WAAI,SAAS,0BAAuB,EACpC;4BACE,QAAQ,UAAA;4BACR,WAAW,aAAA;yBACZ,EACD,EAAE,eAAe,EAAE,CAAC,aAAa,EAAE,EAAE,CACtC,EAAA;;oBAPD,SAOC,CAAC;;;;SACH,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,cAAc,CAAC;AACxB,CAAC;AAED,eAAe,iBAAiB,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
40
|
-
import { isReactNative } from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
41
41
|
function useRequestNewAccessToken() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useRequestNewAccessToken.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useRequestNewAccessToken.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D,SAAS,wBAAwB;IAAjC,iBAwBC;IAvBS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,qBAAqB,GAAG,WAAW,CACvC,gEAAO,EAAiD;;YAA/C,YAAY,kBAAA;;;;oBACnB,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,IAAI,CAC/B,WAAI,SAAS,mCAAgC,EAC7C,EAAE,YAAY,cAAA,EAAE,EAChB;4BACE,eAAe,EAAE,CAAC,aAAa,EAAE,EAAE,2BAA2B;yBAC/D,CACF,EAAA;;oBANK,QAAQ,GAAG,SAMhB;oBAEK,KAAwB,QAAQ,CAAC,IAAI,EAAnC,WAAW,iBAAA,EAAE,IAAI,UAAA,CAAmB;oBAC5C,sBAAO,EAAE,WAAW,aAAA,EAAE,IAAI,MAAA,EAAE,EAAC;;;SAC9B,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,qBAAqB,CAAC;AAC/B,CAAC;AAED,eAAe,wBAAwB,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
40
|
-
import { isReactNative } from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
41
41
|
function useSignInWithEmailAndPassword() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useSignInWithEmailAndPassword.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useSignInWithEmailAndPassword.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D,SAAS,6BAA6B;IAAtC,iBA0BC;IAzBS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,0BAA0B,GAAG,WAAW,CAC5C,gEAAO,EAAwD;;YAAtD,KAAK,WAAA,EAAE,QAAQ,cAAA;;;;oBACtB,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,IAAI,CAC/B,WAAI,SAAS,kBAAe,EAC5B;4BACE,KAAK,OAAA;4BACL,QAAQ,UAAA;yBACT,EACD,EAAE,eAAe,EAAE,CAAC,aAAa,EAAE,EAAE,CACtC,EAAA;;oBAPK,QAAQ,GAAG,SAOhB;oBAEK,KAAsC,QAAQ,CAAC,IAAI,EAAjD,WAAW,iBAAA,EAAE,YAAY,kBAAA,EAAE,IAAI,UAAA,CAAmB;oBAE1D,sBAAO,EAAE,WAAW,aAAA,EAAE,YAAY,cAAA,EAAE,IAAI,MAAA,EAAE,EAAC;;;SAC5C,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,0BAA0B,CAAC;AACpC,CAAC;AAED,eAAe,6BAA6B,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
40
|
-
import { isReactNative } from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
41
41
|
function useSignOut() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useSignOut.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useSignOut.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D,SAAS,UAAU;IAAnB,iBAmBC;IAlBS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,OAAO,GAAG,WAAW,CACzB,gEAAO,EAAiD;YAA/C,YAAY,kBAAA;;;;oBACnB,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAED,qBAAM,KAAK,CAAC,IAAI,CACd,WAAI,SAAS,mBAAgB,EAC7B,EAAE,YAAY,cAAA,EAAE,EAChB,EAAE,eAAe,EAAE,CAAC,aAAa,EAAE,EAAE,CACtC,EAAA;;oBAJD,SAIC,CAAC;;;;SACH,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,OAAO,CAAC;AACjB,CAAC;AAED,eAAe,UAAU,CAAC"}
|
|
@@ -35,9 +35,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
40
|
-
import { isReactNative } from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
|
+
import { isReactNative } from "../../../utils/isReactNative";
|
|
41
41
|
function useSignUpWithEmailAndPassword() {
|
|
42
42
|
var _this = this;
|
|
43
43
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useSignUpWithEmailAndPassword.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useSignUpWithEmailAndPassword.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AAE7D,SAAS,6BAA6B;IAAtC,iBA2DC;IA1DS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,0BAA0B,GAAG,WAAW,CAC5C,gEAAO,EAyBN;;YAxBC,KAAK,WAAA,EACL,QAAQ,cAAA,EACR,IAAI,UAAA,EACJ,QAAQ,cAAA,EACR,MAAM,YAAA,EACN,GAAG,SAAA,EACH,QAAQ,cAAA,EACR,SAAS,eAAA,EACT,QAAQ,cAAA,EACR,cAAc,oBAAA;;;;oBAgBd,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,IAAI,CAC/B,WAAI,SAAS,kBAAe,EAC5B;4BACE,KAAK,OAAA;4BACL,QAAQ,UAAA;4BACR,IAAI,EAAE,IAAI,aAAJ,IAAI,uBAAJ,IAAI,CAAE,IAAI,EAAE;4BAClB,QAAQ,EAAE,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,IAAI,EAAE;4BAC1B,MAAM,QAAA;4BACN,GAAG,EAAE,GAAG,aAAH,GAAG,uBAAH,GAAG,CAAE,IAAI,EAAE;4BAChB,QAAQ,UAAA;4BACR,SAAS,WAAA;4BACT,QAAQ,UAAA;4BACR,cAAc,gBAAA;yBACf,EACD,EAAE,eAAe,EAAE,CAAC,aAAa,EAAE,EAAE,CACtC,EAAA;;oBAfK,QAAQ,GAAG,SAehB;oBAEK,KAAsC,QAAQ,CAAC,IAAI,EAAjD,WAAW,iBAAA,EAAE,YAAY,kBAAA,EAAE,IAAI,UAAA,CAAmB;oBAE1D,sBAAO,EAAE,WAAW,aAAA,EAAE,YAAY,cAAA,EAAE,IAAI,MAAA,EAAE,EAAC;;;SAC5C,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,0BAA0B,CAAC;AACpC,CAAC;AAED,eAAe,6BAA6B,CAAC"}
|
|
@@ -35,8 +35,8 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
35
35
|
}
|
|
36
36
|
};
|
|
37
37
|
import { useCallback } from "react";
|
|
38
|
-
import useProject from "
|
|
39
|
-
import axios from "
|
|
38
|
+
import useProject from "../../../hooks/projects/useProject";
|
|
39
|
+
import axios from "../../../config/axios";
|
|
40
40
|
function useVerifyExternalUser() {
|
|
41
41
|
var _this = this;
|
|
42
42
|
var projectId = useProject().projectId;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useVerifyExternalUser.js","sourceRoot":"","sources":["../../../../../src/legacy/hooks/auth/useVerifyExternalUser.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,OAAO,CAAC;AACpC,OAAO,UAAU,MAAM,oCAAoC,CAAC;AAC5D,OAAO,KAAK,MAAM,uBAAuB,CAAC;AAE1C,SAAS,qBAAqB;IAA9B,iBAwBC;IAvBS,IAAA,SAAS,GAAK,UAAU,EAAE,UAAjB,CAAkB;IAEnC,IAAM,kBAAkB,GAAG,WAAW,CACpC,gEAAO,EAAgC;;YAA9B,OAAO,aAAA;;;;oBACd,IAAI,CAAC,SAAS,EAAE,CAAC;wBACf,MAAM,IAAI,KAAK,CAAC,yBAAyB,CAAC,CAAC;oBAC7C,CAAC;oBAEgB,qBAAM,KAAK,CAAC,IAAI,CAC/B,WAAI,SAAS,+BAA4B,EACzC;4BACE,OAAO,SAAA;yBACR,CACF,EAAA;;oBALK,QAAQ,GAAG,SAKhB;oBAEK,KAAsC,QAAQ,CAAC,IAAI,EAAjD,WAAW,iBAAA,EAAE,YAAY,kBAAA,EAAE,IAAI,UAAA,CAAmB;oBAE1D,sBAAO,EAAE,WAAW,aAAA,EAAE,YAAY,cAAA,EAAE,IAAI,MAAA,EAAE,EAAC;;;SAC5C,EACD,CAAC,SAAS,CAAC,CACZ,CAAC;IAEF,OAAO,kBAAkB,CAAC;AAC5B,CAAC;AAED,eAAe,qBAAqB,CAAC"}
|
|
@@ -11,10 +11,14 @@ interface MarkNotificationAsReadParams {
|
|
|
11
11
|
interface CountUnreadNotificationsParams {
|
|
12
12
|
projectId: string;
|
|
13
13
|
}
|
|
14
|
+
interface MarkAllNotificationsAsReadParams {
|
|
15
|
+
projectId: string;
|
|
16
|
+
}
|
|
14
17
|
export declare const appNotificationsApi: import("@reduxjs/toolkit/query").Api<import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, {
|
|
15
18
|
fetchAppNotifications: import("@reduxjs/toolkit/query").QueryDefinition<FetchAppNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", UnifiedAppNotification[], "api", unknown>;
|
|
16
19
|
markNotificationAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
17
20
|
countUnreadNotifications: import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>;
|
|
21
|
+
markAllNotificationsAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
18
22
|
}, "api", "AppNotification", typeof import("@reduxjs/toolkit/query").coreModuleName | typeof import("@reduxjs/toolkit/dist/query/react").reactHooksModuleName>;
|
|
19
23
|
export declare const useFetchAppNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
20
24
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -439,6 +443,166 @@ export declare const useFetchAppNotificationsQuery: <R extends Record<string, an
|
|
|
439
443
|
} | undefined) => readonly [(arg: MarkNotificationAsReadParams) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
440
444
|
originalArgs?: MarkNotificationAsReadParams | undefined;
|
|
441
445
|
reset: () => void;
|
|
446
|
+
}], useMarkAllNotificationsAsReadMutation: <R extends Record<string, any> = ({
|
|
447
|
+
requestId?: undefined;
|
|
448
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
449
|
+
data?: undefined;
|
|
450
|
+
error?: undefined;
|
|
451
|
+
endpointName?: string;
|
|
452
|
+
startedTimeStamp?: undefined;
|
|
453
|
+
fulfilledTimeStamp?: undefined;
|
|
454
|
+
} & {
|
|
455
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
456
|
+
isUninitialized: true;
|
|
457
|
+
isLoading: false;
|
|
458
|
+
isSuccess: false;
|
|
459
|
+
isError: false;
|
|
460
|
+
}) | ({
|
|
461
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
462
|
+
} & Omit<{
|
|
463
|
+
requestId: string;
|
|
464
|
+
data?: void | undefined;
|
|
465
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
466
|
+
endpointName: string;
|
|
467
|
+
startedTimeStamp: number;
|
|
468
|
+
fulfilledTimeStamp?: number;
|
|
469
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
470
|
+
requestId: string;
|
|
471
|
+
data?: void | undefined;
|
|
472
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
473
|
+
endpointName: string;
|
|
474
|
+
startedTimeStamp: number;
|
|
475
|
+
fulfilledTimeStamp?: number;
|
|
476
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
477
|
+
error: undefined;
|
|
478
|
+
} & {
|
|
479
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
480
|
+
isUninitialized: false;
|
|
481
|
+
isLoading: false;
|
|
482
|
+
isSuccess: true;
|
|
483
|
+
isError: false;
|
|
484
|
+
}) | ({
|
|
485
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
486
|
+
} & {
|
|
487
|
+
requestId: string;
|
|
488
|
+
data?: void | undefined;
|
|
489
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
490
|
+
endpointName: string;
|
|
491
|
+
startedTimeStamp: number;
|
|
492
|
+
fulfilledTimeStamp?: number;
|
|
493
|
+
} & {
|
|
494
|
+
data?: undefined;
|
|
495
|
+
} & {
|
|
496
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
497
|
+
isUninitialized: false;
|
|
498
|
+
isLoading: true;
|
|
499
|
+
isSuccess: false;
|
|
500
|
+
isError: false;
|
|
501
|
+
}) | ({
|
|
502
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
503
|
+
} & Omit<{
|
|
504
|
+
requestId: string;
|
|
505
|
+
data?: void | undefined;
|
|
506
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
507
|
+
endpointName: string;
|
|
508
|
+
startedTimeStamp: number;
|
|
509
|
+
fulfilledTimeStamp?: number;
|
|
510
|
+
}, "error"> & Required<Pick<{
|
|
511
|
+
requestId: string;
|
|
512
|
+
data?: void | undefined;
|
|
513
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
514
|
+
endpointName: string;
|
|
515
|
+
startedTimeStamp: number;
|
|
516
|
+
fulfilledTimeStamp?: number;
|
|
517
|
+
}, "error">> & {
|
|
518
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
519
|
+
isUninitialized: false;
|
|
520
|
+
isLoading: false;
|
|
521
|
+
isSuccess: false;
|
|
522
|
+
isError: true;
|
|
523
|
+
})>(options?: {
|
|
524
|
+
selectFromResult?: ((state: ({
|
|
525
|
+
requestId?: undefined;
|
|
526
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
527
|
+
data?: undefined;
|
|
528
|
+
error?: undefined;
|
|
529
|
+
endpointName?: string;
|
|
530
|
+
startedTimeStamp?: undefined;
|
|
531
|
+
fulfilledTimeStamp?: undefined;
|
|
532
|
+
} & {
|
|
533
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
534
|
+
isUninitialized: true;
|
|
535
|
+
isLoading: false;
|
|
536
|
+
isSuccess: false;
|
|
537
|
+
isError: false;
|
|
538
|
+
}) | ({
|
|
539
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
540
|
+
} & Omit<{
|
|
541
|
+
requestId: string;
|
|
542
|
+
data?: void | undefined;
|
|
543
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
544
|
+
endpointName: string;
|
|
545
|
+
startedTimeStamp: number;
|
|
546
|
+
fulfilledTimeStamp?: number;
|
|
547
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
548
|
+
requestId: string;
|
|
549
|
+
data?: void | undefined;
|
|
550
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
551
|
+
endpointName: string;
|
|
552
|
+
startedTimeStamp: number;
|
|
553
|
+
fulfilledTimeStamp?: number;
|
|
554
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
555
|
+
error: undefined;
|
|
556
|
+
} & {
|
|
557
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
558
|
+
isUninitialized: false;
|
|
559
|
+
isLoading: false;
|
|
560
|
+
isSuccess: true;
|
|
561
|
+
isError: false;
|
|
562
|
+
}) | ({
|
|
563
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
564
|
+
} & {
|
|
565
|
+
requestId: string;
|
|
566
|
+
data?: void | undefined;
|
|
567
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
568
|
+
endpointName: string;
|
|
569
|
+
startedTimeStamp: number;
|
|
570
|
+
fulfilledTimeStamp?: number;
|
|
571
|
+
} & {
|
|
572
|
+
data?: undefined;
|
|
573
|
+
} & {
|
|
574
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
575
|
+
isUninitialized: false;
|
|
576
|
+
isLoading: true;
|
|
577
|
+
isSuccess: false;
|
|
578
|
+
isError: false;
|
|
579
|
+
}) | ({
|
|
580
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
581
|
+
} & Omit<{
|
|
582
|
+
requestId: string;
|
|
583
|
+
data?: void | undefined;
|
|
584
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
585
|
+
endpointName: string;
|
|
586
|
+
startedTimeStamp: number;
|
|
587
|
+
fulfilledTimeStamp?: number;
|
|
588
|
+
}, "error"> & Required<Pick<{
|
|
589
|
+
requestId: string;
|
|
590
|
+
data?: void | undefined;
|
|
591
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
592
|
+
endpointName: string;
|
|
593
|
+
startedTimeStamp: number;
|
|
594
|
+
fulfilledTimeStamp?: number;
|
|
595
|
+
}, "error">> & {
|
|
596
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
597
|
+
isUninitialized: false;
|
|
598
|
+
isLoading: false;
|
|
599
|
+
isSuccess: false;
|
|
600
|
+
isError: true;
|
|
601
|
+
})) => R) | undefined;
|
|
602
|
+
fixedCacheKey?: string;
|
|
603
|
+
} | undefined) => readonly [(arg: MarkAllNotificationsAsReadParams) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
604
|
+
originalArgs?: MarkAllNotificationsAsReadParams | undefined;
|
|
605
|
+
reset: () => void;
|
|
442
606
|
}], useCountUnreadNotificationsQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
443
607
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
444
608
|
originalArgs?: undefined | undefined;
|
|
@@ -707,6 +871,7 @@ export declare const fetchAppNotifications: import("@reduxjs/toolkit/query").Api
|
|
|
707
871
|
fetchAppNotifications: import("@reduxjs/toolkit/query").QueryDefinition<FetchAppNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", UnifiedAppNotification[], "api", unknown>;
|
|
708
872
|
markNotificationAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
709
873
|
countUnreadNotifications: import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>;
|
|
874
|
+
markAllNotificationsAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
710
875
|
}> & {
|
|
711
876
|
useQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
712
877
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
@@ -1114,6 +1279,7 @@ export declare const fetchAppNotifications: import("@reduxjs/toolkit/query").Api
|
|
|
1114
1279
|
fetchAppNotifications: import("@reduxjs/toolkit/query").QueryDefinition<FetchAppNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", UnifiedAppNotification[], "api", unknown>;
|
|
1115
1280
|
markNotificationAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1116
1281
|
countUnreadNotifications: import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>;
|
|
1282
|
+
markAllNotificationsAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1117
1283
|
}> & {
|
|
1118
1284
|
useMutation: <R extends Record<string, any> = ({
|
|
1119
1285
|
requestId?: undefined;
|
|
@@ -1276,10 +1442,178 @@ export declare const fetchAppNotifications: import("@reduxjs/toolkit/query").Api
|
|
|
1276
1442
|
originalArgs?: MarkNotificationAsReadParams | undefined;
|
|
1277
1443
|
reset: () => void;
|
|
1278
1444
|
}];
|
|
1445
|
+
}, markAllNotificationsAsRead: import("@reduxjs/toolkit/query").ApiEndpointMutation<import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>, {
|
|
1446
|
+
fetchAppNotifications: import("@reduxjs/toolkit/query").QueryDefinition<FetchAppNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", UnifiedAppNotification[], "api", unknown>;
|
|
1447
|
+
markNotificationAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1448
|
+
countUnreadNotifications: import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>;
|
|
1449
|
+
markAllNotificationsAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1450
|
+
}> & {
|
|
1451
|
+
useMutation: <R extends Record<string, any> = ({
|
|
1452
|
+
requestId?: undefined;
|
|
1453
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1454
|
+
data?: undefined;
|
|
1455
|
+
error?: undefined;
|
|
1456
|
+
endpointName?: string;
|
|
1457
|
+
startedTimeStamp?: undefined;
|
|
1458
|
+
fulfilledTimeStamp?: undefined;
|
|
1459
|
+
} & {
|
|
1460
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1461
|
+
isUninitialized: true;
|
|
1462
|
+
isLoading: false;
|
|
1463
|
+
isSuccess: false;
|
|
1464
|
+
isError: false;
|
|
1465
|
+
}) | ({
|
|
1466
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1467
|
+
} & Omit<{
|
|
1468
|
+
requestId: string;
|
|
1469
|
+
data?: void | undefined;
|
|
1470
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1471
|
+
endpointName: string;
|
|
1472
|
+
startedTimeStamp: number;
|
|
1473
|
+
fulfilledTimeStamp?: number;
|
|
1474
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1475
|
+
requestId: string;
|
|
1476
|
+
data?: void | undefined;
|
|
1477
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1478
|
+
endpointName: string;
|
|
1479
|
+
startedTimeStamp: number;
|
|
1480
|
+
fulfilledTimeStamp?: number;
|
|
1481
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1482
|
+
error: undefined;
|
|
1483
|
+
} & {
|
|
1484
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1485
|
+
isUninitialized: false;
|
|
1486
|
+
isLoading: false;
|
|
1487
|
+
isSuccess: true;
|
|
1488
|
+
isError: false;
|
|
1489
|
+
}) | ({
|
|
1490
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1491
|
+
} & {
|
|
1492
|
+
requestId: string;
|
|
1493
|
+
data?: void | undefined;
|
|
1494
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1495
|
+
endpointName: string;
|
|
1496
|
+
startedTimeStamp: number;
|
|
1497
|
+
fulfilledTimeStamp?: number;
|
|
1498
|
+
} & {
|
|
1499
|
+
data?: undefined;
|
|
1500
|
+
} & {
|
|
1501
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1502
|
+
isUninitialized: false;
|
|
1503
|
+
isLoading: true;
|
|
1504
|
+
isSuccess: false;
|
|
1505
|
+
isError: false;
|
|
1506
|
+
}) | ({
|
|
1507
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1508
|
+
} & Omit<{
|
|
1509
|
+
requestId: string;
|
|
1510
|
+
data?: void | undefined;
|
|
1511
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1512
|
+
endpointName: string;
|
|
1513
|
+
startedTimeStamp: number;
|
|
1514
|
+
fulfilledTimeStamp?: number;
|
|
1515
|
+
}, "error"> & Required<Pick<{
|
|
1516
|
+
requestId: string;
|
|
1517
|
+
data?: void | undefined;
|
|
1518
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1519
|
+
endpointName: string;
|
|
1520
|
+
startedTimeStamp: number;
|
|
1521
|
+
fulfilledTimeStamp?: number;
|
|
1522
|
+
}, "error">> & {
|
|
1523
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1524
|
+
isUninitialized: false;
|
|
1525
|
+
isLoading: false;
|
|
1526
|
+
isSuccess: false;
|
|
1527
|
+
isError: true;
|
|
1528
|
+
})>(options?: {
|
|
1529
|
+
selectFromResult?: ((state: ({
|
|
1530
|
+
requestId?: undefined;
|
|
1531
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1532
|
+
data?: undefined;
|
|
1533
|
+
error?: undefined;
|
|
1534
|
+
endpointName?: string;
|
|
1535
|
+
startedTimeStamp?: undefined;
|
|
1536
|
+
fulfilledTimeStamp?: undefined;
|
|
1537
|
+
} & {
|
|
1538
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|
|
1539
|
+
isUninitialized: true;
|
|
1540
|
+
isLoading: false;
|
|
1541
|
+
isSuccess: false;
|
|
1542
|
+
isError: false;
|
|
1543
|
+
}) | ({
|
|
1544
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1545
|
+
} & Omit<{
|
|
1546
|
+
requestId: string;
|
|
1547
|
+
data?: void | undefined;
|
|
1548
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1549
|
+
endpointName: string;
|
|
1550
|
+
startedTimeStamp: number;
|
|
1551
|
+
fulfilledTimeStamp?: number;
|
|
1552
|
+
}, "data" | "fulfilledTimeStamp"> & Required<Pick<{
|
|
1553
|
+
requestId: string;
|
|
1554
|
+
data?: void | undefined;
|
|
1555
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1556
|
+
endpointName: string;
|
|
1557
|
+
startedTimeStamp: number;
|
|
1558
|
+
fulfilledTimeStamp?: number;
|
|
1559
|
+
}, "data" | "fulfilledTimeStamp">> & {
|
|
1560
|
+
error: undefined;
|
|
1561
|
+
} & {
|
|
1562
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.fulfilled;
|
|
1563
|
+
isUninitialized: false;
|
|
1564
|
+
isLoading: false;
|
|
1565
|
+
isSuccess: true;
|
|
1566
|
+
isError: false;
|
|
1567
|
+
}) | ({
|
|
1568
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1569
|
+
} & {
|
|
1570
|
+
requestId: string;
|
|
1571
|
+
data?: void | undefined;
|
|
1572
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1573
|
+
endpointName: string;
|
|
1574
|
+
startedTimeStamp: number;
|
|
1575
|
+
fulfilledTimeStamp?: number;
|
|
1576
|
+
} & {
|
|
1577
|
+
data?: undefined;
|
|
1578
|
+
} & {
|
|
1579
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.pending;
|
|
1580
|
+
isUninitialized: false;
|
|
1581
|
+
isLoading: true;
|
|
1582
|
+
isSuccess: false;
|
|
1583
|
+
isError: false;
|
|
1584
|
+
}) | ({
|
|
1585
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1586
|
+
} & Omit<{
|
|
1587
|
+
requestId: string;
|
|
1588
|
+
data?: void | undefined;
|
|
1589
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1590
|
+
endpointName: string;
|
|
1591
|
+
startedTimeStamp: number;
|
|
1592
|
+
fulfilledTimeStamp?: number;
|
|
1593
|
+
}, "error"> & Required<Pick<{
|
|
1594
|
+
requestId: string;
|
|
1595
|
+
data?: void | undefined;
|
|
1596
|
+
error?: import("@reduxjs/toolkit/query").FetchBaseQueryError | import("@reduxjs/toolkit").SerializedError | undefined;
|
|
1597
|
+
endpointName: string;
|
|
1598
|
+
startedTimeStamp: number;
|
|
1599
|
+
fulfilledTimeStamp?: number;
|
|
1600
|
+
}, "error">> & {
|
|
1601
|
+
status: import("@reduxjs/toolkit/query").QueryStatus.rejected;
|
|
1602
|
+
isUninitialized: false;
|
|
1603
|
+
isLoading: false;
|
|
1604
|
+
isSuccess: false;
|
|
1605
|
+
isError: true;
|
|
1606
|
+
})) => R) | undefined;
|
|
1607
|
+
fixedCacheKey?: string;
|
|
1608
|
+
} | undefined) => readonly [(arg: MarkAllNotificationsAsReadParams) => import("@reduxjs/toolkit/query").MutationActionCreatorResult<import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>>, import("@reduxjs/toolkit/query").TSHelpersNoInfer<R> & {
|
|
1609
|
+
originalArgs?: MarkAllNotificationsAsReadParams | undefined;
|
|
1610
|
+
reset: () => void;
|
|
1611
|
+
}];
|
|
1279
1612
|
}, countUnreadNotifications: import("@reduxjs/toolkit/query").ApiEndpointQuery<import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>, {
|
|
1280
1613
|
fetchAppNotifications: import("@reduxjs/toolkit/query").QueryDefinition<FetchAppNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", UnifiedAppNotification[], "api", unknown>;
|
|
1281
1614
|
markNotificationAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkNotificationAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1282
1615
|
countUnreadNotifications: import("@reduxjs/toolkit/query").QueryDefinition<CountUnreadNotificationsParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", number, "api", unknown>;
|
|
1616
|
+
markAllNotificationsAsRead: import("@reduxjs/toolkit/query").MutationDefinition<MarkAllNotificationsAsReadParams, import("@reduxjs/toolkit/query").BaseQueryFn<string | import("@reduxjs/toolkit/query").FetchArgs, unknown, import("@reduxjs/toolkit/query").FetchBaseQueryError, {}, import("@reduxjs/toolkit/query").FetchBaseQueryMeta>, "AppNotification", void, "api", unknown>;
|
|
1283
1617
|
}> & {
|
|
1284
1618
|
useQuery: <R extends Record<string, any> = import("@reduxjs/toolkit/query").TSHelpersId<(Omit<{
|
|
1285
1619
|
status: import("@reduxjs/toolkit/query").QueryStatus.uninitialized;
|