@quesmed/types-rn 2.2.89 → 2.2.90
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/package.json
CHANGED
|
@@ -11,4 +11,5 @@ export interface INewNotification {
|
|
|
11
11
|
export declare type IOnNotificationPublisherData = RootData<INewNotification, 'onNotificationArise'>;
|
|
12
12
|
export declare type IOnNotificationAriseData = RootData<INotification[], 'onNotificationArise'>;
|
|
13
13
|
export declare const ON_NOTIFICATION_ARISE = "ON_NOTIFICATION_ARISE";
|
|
14
|
+
export declare const NOTIFICATION_ARISE: import("@apollo/client").DocumentNode;
|
|
14
15
|
export declare const onNotificationArise: ({ client, subscriptionData, }: OnSubscriptionDataOptions<IOnNotificationAriseData>) => void;
|
|
@@ -1,8 +1,37 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.onNotificationArise = exports.ON_NOTIFICATION_ARISE = void 0;
|
|
3
|
+
exports.onNotificationArise = exports.NOTIFICATION_ARISE = exports.ON_NOTIFICATION_ARISE = void 0;
|
|
4
|
+
const client_1 = require("@apollo/client");
|
|
4
5
|
const restricted_1 = require("../query/restricted");
|
|
5
6
|
exports.ON_NOTIFICATION_ARISE = 'ON_NOTIFICATION_ARISE';
|
|
7
|
+
exports.NOTIFICATION_ARISE = (0, client_1.gql) `
|
|
8
|
+
subscription OnNotificationArise($userId: Int!) {
|
|
9
|
+
onNotificationArise(userId: $userId) {
|
|
10
|
+
userId
|
|
11
|
+
read
|
|
12
|
+
type
|
|
13
|
+
id
|
|
14
|
+
description
|
|
15
|
+
actionType
|
|
16
|
+
createdAt
|
|
17
|
+
fromUser {
|
|
18
|
+
id
|
|
19
|
+
displayName
|
|
20
|
+
}
|
|
21
|
+
comment {
|
|
22
|
+
id
|
|
23
|
+
comment
|
|
24
|
+
question {
|
|
25
|
+
id
|
|
26
|
+
concept {
|
|
27
|
+
id
|
|
28
|
+
name
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
`;
|
|
6
35
|
const onNotificationArise = ({ client, subscriptionData, }) => {
|
|
7
36
|
const { onNotificationArise } = subscriptionData.data || {};
|
|
8
37
|
if (onNotificationArise) {
|