@@ -39,6 +39,7 @@ const pathTypeToNodeType: Record<EPathType, NavigationTreeNodeType | undefined>
39
39
[ EPathType . EPathTypeView ] : 'view' ,
40
40
41
41
[ EPathType . EPathTypeReplication ] : 'async_replication' ,
42
+ [ EPathType . EPathTypeTransfer ] : 'transfer' ,
42
43
[ EPathType . EPathTypeResourcePool ] : 'resource_pool' ,
43
44
} ;
44
45
@@ -87,6 +88,7 @@ const pathTypeToEntityName: Record<EPathType, string | undefined> = {
87
88
[ EPathType . EPathTypeView ] : 'View' ,
88
89
89
90
[ EPathType . EPathTypeReplication ] : 'Async Replication' ,
91
+ [ EPathType . EPathTypeTransfer ] : 'Transfer' ,
90
92
[ EPathType . EPathTypeResourcePool ] : 'Resource Pool' ,
91
93
} ;
92
94
@@ -128,6 +130,7 @@ const pathTypeToIsTable: Record<EPathType, boolean> = {
128
130
[ EPathType . EPathTypePersQueueGroup ] : false ,
129
131
[ EPathType . EPathTypeExternalDataSource ] : false ,
130
132
[ EPathType . EPathTypeReplication ] : false ,
133
+ [ EPathType . EPathTypeTransfer ] : false ,
131
134
[ EPathType . EPathTypeResourcePool ] : false ,
132
135
} ;
133
136
@@ -169,6 +172,7 @@ const pathTypeToIsColumn: Record<EPathType, boolean> = {
169
172
[ EPathType . EPathTypeView ] : false ,
170
173
171
174
[ EPathType . EPathTypeReplication ] : false ,
175
+ [ EPathType . EPathTypeTransfer ] : false ,
172
176
[ EPathType . EPathTypeResourcePool ] : false ,
173
177
} ;
174
178
@@ -195,6 +199,7 @@ const pathTypeToIsDatabase: Record<EPathType, boolean> = {
195
199
[ EPathType . EPathTypeView ] : false ,
196
200
197
201
[ EPathType . EPathTypeReplication ] : false ,
202
+ [ EPathType . EPathTypeTransfer ] : false ,
198
203
[ EPathType . EPathTypeResourcePool ] : false ,
199
204
} ;
200
205
@@ -226,6 +231,7 @@ const pathTypeToEntityWithMergedImplementation: Record<EPathType, boolean> = {
226
231
[ EPathType . EPathTypeView ] : false ,
227
232
228
233
[ EPathType . EPathTypeReplication ] : false ,
234
+ [ EPathType . EPathTypeTransfer ] : false ,
229
235
[ EPathType . EPathTypeResourcePool ] : false ,
230
236
} ;
231
237
@@ -253,6 +259,7 @@ const pathTypeToChildless: Record<EPathType, boolean> = {
253
259
[ EPathType . EPathTypeResourcePool ] : true ,
254
260
255
261
[ EPathType . EPathTypeReplication ] : true ,
262
+ [ EPathType . EPathTypeTransfer ] : true ,
256
263
257
264
[ EPathType . EPathTypeInvalid ] : false ,
258
265
[ EPathType . EPathTypeColumnStore ] : false ,
0 commit comments