Showing
1 changed file
with
13 additions
and
3 deletions
... | ... | @@ -393,7 +393,15 @@ export default angular.module('thingsboard.types', []) |
393 | 393 | edge: "EDGE", |
394 | 394 | user: "USER", |
395 | 395 | customer: "CUSTOMER", |
396 | - relation: "RELATION" | |
396 | + relation: "RELATION", | |
397 | + entityGroup: "ENTITY_GROUP", | |
398 | + schedulerEvent: "SCHEDULER_EVENT", | |
399 | + whiteLabeling: "WHITE_LABELING", | |
400 | + loginWhiteLabeling: "LOGIN_WHITE_LABELING", | |
401 | + customTranslation: "CUSTOM_TRANSLATION", | |
402 | + widgetsBundle: "WIDGETS_BUNDLE", | |
403 | + widgetType: "WIDGET_TYPE", | |
404 | + adminSettings: "ADMIN_SETTINGS" | |
397 | 405 | }, |
398 | 406 | edgeEventAction: { |
399 | 407 | updated: "UPDATED", |
... | ... | @@ -786,8 +794,10 @@ export default angular.module('thingsboard.types', []) |
786 | 794 | clientSide: false |
787 | 795 | } |
788 | 796 | }, |
789 | - coreRuleChainType: "CORE", | |
790 | - edgeRuleChainType: "EDGE", | |
797 | + ruleChainType: { | |
798 | + core: "CORE", | |
799 | + edge: "EDGE" | |
800 | + }, | |
791 | 801 | ruleNodeTypeComponentTypes: ["FILTER", "ENRICHMENT", "TRANSFORMATION", "ACTION", "EXTERNAL"], |
792 | 802 | ruleChainNodeComponent: { |
793 | 803 | type: 'RULE_CHAIN', | ... | ... |