@streamlayer/feature-gamification
Advanced tools
Comparing version 0.37.1 to 0.37.2
@@ -212,3 +212,6 @@ import { AbstractFeature, ApiStore, FeatureStatus, SingleStore, createSingleStore, } from '@streamlayer/sdk-web-interfaces'; | ||
type: NotificationType.QUESTION, | ||
action: () => question.data?.question && this.openQuestion(question.data.question.id), | ||
action: () => { | ||
question.data?.question && this.openQuestion(question.data.question.id); | ||
this.openFeature(); | ||
}, | ||
close: () => question.data?.question && this.closeQuestion(question.data.question.id), | ||
@@ -248,3 +251,6 @@ autoHideDuration: 1000 * 60, | ||
type: NotificationType.QUESTION, | ||
action: () => question.data?.question && this.openQuestion(question.data.question.id), | ||
action: () => { | ||
question.data?.question && this.openQuestion(question.data.question.id); | ||
this.openFeature(); | ||
}, | ||
close: () => question.data?.question && this.closeQuestion(question.data.question.id), | ||
@@ -271,3 +277,6 @@ autoHideDuration: 1000 * 120, | ||
type: NotificationType.QUESTION, | ||
action: () => question.data?.question && this.openQuestion(question.data.question.id), | ||
action: () => { | ||
question.data?.question && this.openQuestion(question.data.question.id); | ||
this.openFeature(); | ||
}, | ||
close: () => question.data?.question && this.closeQuestion(question.data.question.id), | ||
@@ -274,0 +283,0 @@ autoHideDuration: 1000 * 120, |
{ | ||
"name": "@streamlayer/feature-gamification", | ||
"version": "0.37.1", | ||
"version": "0.37.2", | ||
"peerDependencies": { | ||
@@ -9,9 +9,9 @@ "@bufbuild/protobuf": "^1.6.0", | ||
"nanostores": "^0.9.5", | ||
"@streamlayer/sdk-web-api": "^0.21.2", | ||
"@streamlayer/sdk-web-core": "^0.20.1", | ||
"@streamlayer/sdk-web-interfaces": "^0.20.4", | ||
"@streamlayer/sdk-web-logger": "^0.5.15", | ||
"@streamlayer/sdk-web-notifications": "^0.13.10", | ||
"@streamlayer/sdk-web-types": "^0.22.2", | ||
"@streamlayer/sdk-web-storage": "^0.4.2" | ||
"@streamlayer/sdk-web-api": "^0.22.0", | ||
"@streamlayer/sdk-web-interfaces": "^0.20.5", | ||
"@streamlayer/sdk-web-logger": "^0.5.16", | ||
"@streamlayer/sdk-web-core": "^0.21.0", | ||
"@streamlayer/sdk-web-notifications": "^0.14.0", | ||
"@streamlayer/sdk-web-storage": "^0.4.3", | ||
"@streamlayer/sdk-web-types": "^0.22.3" | ||
}, | ||
@@ -18,0 +18,0 @@ "devDependencies": { |
87042
1654