File tree Expand file tree Collapse file tree
packages/sdk-js/example/browser/js Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ** New Features**
2+
3+ * Added new ` ProductType ` for Alerting Service for ` sdk-js ` example page.
Original file line number Diff line number Diff line change @@ -22,12 +22,14 @@ module.exports = (() => {
2222 products : [
2323 ProductType . PORTFOLIO ,
2424 ProductType . WATCHLIST ,
25- ProductType . ENTITLEMENTS
25+ ProductType . ENTITLEMENTS ,
26+ ProductType . ALERT
2627 ] ,
2728 types : {
2829 [ ProductType . PORTFOLIO . code ] : Enum . getItems ( EventType ) . filter ( eventType => eventType . product === ProductType . PORTFOLIO ) ,
2930 [ ProductType . WATCHLIST . code ] : Enum . getItems ( EventType ) . filter ( eventType => eventType . product === ProductType . WATCHLIST ) ,
30- [ ProductType . ENTITLEMENTS . code ] : Enum . getItems ( EventType ) . filter ( eventType => eventType . product === ProductType . ENTITLEMENTS )
31+ [ ProductType . ENTITLEMENTS . code ] : Enum . getItems ( EventType ) . filter ( eventType => eventType . product === ProductType . ENTITLEMENTS ) ,
32+ [ ProductType . ALERT . code ] : Enum . getItems ( EventType ) . filter ( eventType => eventType . product === ProductType . ALERT )
3133 }
3234 } ;
3335} ) ( ) ;
You can’t perform that action at this time.
0 commit comments