File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ export enum NotificationType {
25
25
// Root networks
26
26
ROOT_NETWORKS_UPDATED = 'rootNetworksUpdated' ,
27
27
ROOT_NETWORKS_UPDATE_FAILED = 'rootNetworksUpdateFailed' ,
28
- ROOT_NETWORK_DELETION_STARTED = 'rootNetworkDeletionStarted ' ,
28
+ ROOT_NETWORKS_DELETION_STARTED = 'rootNetworksDeletionStarted ' ,
29
29
// Nodes and tree
30
30
NODE_CREATED = 'nodeCreated' ,
31
31
NODES_DELETED = 'nodeDeleted' ,
@@ -201,7 +201,7 @@ interface RootNetworkUpdateFailedEventDataHeaders extends CommonStudyEventDataHe
201
201
}
202
202
203
203
interface RootNetworkDeletionStartedEventDataHeaders extends CommonStudyEventDataHeaders {
204
- updateType : NotificationType . ROOT_NETWORK_DELETION_STARTED ;
204
+ updateType : NotificationType . ROOT_NETWORKS_DELETION_STARTED ;
205
205
rootNetworksUuids : UUID [ ] ;
206
206
}
207
207
@@ -872,7 +872,7 @@ export function isStateEstimationResultNotification(notif: unknown): notif is St
872
872
export function isRootNetworkDeletionStartedNotification ( notif : unknown ) : notif is RootNetworkDeletionStartedEventData {
873
873
return (
874
874
( notif as RootNetworkDeletionStartedEventData ) . headers ?. updateType ===
875
- NotificationType . ROOT_NETWORK_DELETION_STARTED
875
+ NotificationType . ROOT_NETWORKS_DELETION_STARTED
876
876
) ;
877
877
}
878
878
You can’t perform that action at this time.
0 commit comments