@streamlayer/feature-gamification 0.28.0 → 0.29.0
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/lib/gamification.js +2 -8
- package/package.json +4 -4
package/lib/gamification.js
CHANGED
|
@@ -128,14 +128,8 @@ export class Gamification extends AbstractFeature {
|
|
|
128
128
|
title: question.data.question.notification.title,
|
|
129
129
|
body: question.data.question.notification.body,
|
|
130
130
|
image: question.data.question.notification.image,
|
|
131
|
-
account:
|
|
132
|
-
|
|
133
|
-
image: '',
|
|
134
|
-
name: optionsValue?.tweetMeta?.account || '',
|
|
135
|
-
// ToDo: add later
|
|
136
|
-
userName: '',
|
|
137
|
-
verified: !!optionsValue?.tweetMeta?.accountVerified,
|
|
138
|
-
},
|
|
131
|
+
account: optionsValue?.tweetMeta?.account || '',
|
|
132
|
+
accountVerified: !!optionsValue?.tweetMeta?.accountVerified,
|
|
139
133
|
};
|
|
140
134
|
this.notifications.add({
|
|
141
135
|
type: NotificationType.QUESTION,
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamlayer/feature-gamification",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.29.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@bufbuild/protobuf": "^1.4.2",
|
|
6
6
|
"@streamlayer/sl-eslib": "^5.53.6",
|
|
7
7
|
"@fastify/deepmerge": "*",
|
|
8
8
|
"nanostores": "^0.9.5",
|
|
9
9
|
"@streamlayer/sdk-web-api": "^0.1.0",
|
|
10
|
-
"@streamlayer/sdk-web-core": "^0.0.
|
|
10
|
+
"@streamlayer/sdk-web-core": "^0.0.7",
|
|
11
11
|
"@streamlayer/sdk-web-interfaces": "^0.0.1",
|
|
12
12
|
"@streamlayer/sdk-web-logger": "^0.0.1",
|
|
13
13
|
"@streamlayer/sdk-web-notifications": "^0.1.0",
|
|
14
|
-
"@streamlayer/sdk-web-
|
|
15
|
-
"@streamlayer/sdk-web-
|
|
14
|
+
"@streamlayer/sdk-web-types": "^0.1.0",
|
|
15
|
+
"@streamlayer/sdk-web-storage": "^0.0.4"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"tslib": "^2.6.2"
|