@@ -45,6 +45,8 @@ const pathTypeToNodeType: Record<EPathType, NavigationTreeNodeType | undefined>
4545 [ EPathType . EPathTypeReplication ] : 'async_replication' ,
4646 [ EPathType . EPathTypeTransfer ] : 'transfer' ,
4747 [ EPathType . EPathTypeResourcePool ] : 'resource_pool' ,
48+
49+ [ EPathType . EPathTypeStreamingQuery ] : 'streaming_query' ,
4850} ;
4951
5052export const nodeTableTypeToPathType : Partial < Record < NavigationTreeNodeType , EPathType > > = {
@@ -94,6 +96,8 @@ const pathTypeToEntityName: Record<EPathType, string | undefined> = {
9496 [ EPathType . EPathTypeExternalDataSource ] : i18n ( 'entity-name_external-data-source' ) ,
9597 [ EPathType . EPathTypeExternalTable ] : i18n ( 'entity-name_external-table' ) ,
9698
99+ [ EPathType . EPathTypeStreamingQuery ] : i18n ( 'entity-name_streaming_query' ) ,
100+
97101 [ EPathType . EPathTypeView ] : i18n ( 'entity-name_view' ) ,
98102
99103 [ EPathType . EPathTypeReplication ] : i18n ( 'entity-name_async-replication' ) ,
@@ -154,6 +158,7 @@ const pathTypeToIsTable: Record<EPathType, boolean> = {
154158 [ EPathType . EPathTypeReplication ] : false ,
155159 [ EPathType . EPathTypeTransfer ] : false ,
156160 [ EPathType . EPathTypeResourcePool ] : false ,
161+ [ EPathType . EPathTypeStreamingQuery ] : false ,
157162} ;
158163
159164//if add entity with tableType, make sure that Schema is available in Diagnostics section
@@ -194,6 +199,8 @@ const pathTypeToIsColumn: Record<EPathType, boolean> = {
194199 [ EPathType . EPathTypeExternalDataSource ] : false ,
195200 [ EPathType . EPathTypeExternalTable ] : false ,
196201
202+ [ EPathType . EPathTypeStreamingQuery ] : false ,
203+
197204 [ EPathType . EPathTypeView ] : false ,
198205
199206 [ EPathType . EPathTypeReplication ] : false ,
@@ -222,6 +229,8 @@ const pathTypeToIsDatabase: Record<EPathType, boolean> = {
222229 [ EPathType . EPathTypeExternalDataSource ] : false ,
223230 [ EPathType . EPathTypeExternalTable ] : false ,
224231
232+ [ EPathType . EPathTypeStreamingQuery ] : false ,
233+
225234 [ EPathType . EPathTypeView ] : false ,
226235
227236 [ EPathType . EPathTypeReplication ] : false ,
@@ -272,6 +281,7 @@ const pathTypeToChildless: Record<EPathType, boolean> = {
272281 [ EPathType . EPathTypeSubDomain ] : false ,
273282 [ EPathType . EPathTypeTableIndex ] : false ,
274283 [ EPathType . EPathTypeExtSubDomain ] : false ,
284+ [ EPathType . EPathTypeStreamingQuery ] : false ,
275285} ;
276286
277287export const isChildlessPathType = ( type ?: EPathType , subType ?: EPathSubType ) =>
0 commit comments