@514labs/moose-proto 0.6.297-ci-40-g26f564af → 0.6.297

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -410,8 +410,6 @@ declare class InfrastructureMap$Type extends MessageType<InfrastructureMap> {
410
410
  private binaryReadMap11;
411
411
  private binaryReadMap12;
412
412
  private binaryReadMap13;
413
- private binaryReadMap16;
414
- private binaryReadMap17;
415
413
  internalBinaryWrite(message: InfrastructureMap, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
416
414
  }
417
415
  /**
@@ -437,10 +435,10 @@ interface InfrastructureMap {
437
435
  [key: string]: Table;
438
436
  };
439
437
  /**
440
- * @generated from protobuf field: map<string, moose.proto.Dmv1View> dmv1_views = 4
438
+ * @generated from protobuf field: map<string, moose.proto.View> views = 4
441
439
  */
442
- dmv1Views: {
443
- [key: string]: Dmv1View;
440
+ views: {
441
+ [key: string]: View;
444
442
  };
445
443
  /**
446
444
  * @generated from protobuf field: map<string, moose.proto.TopicToTableSyncProcess> topic_to_table_sync_processes = 5
@@ -492,22 +490,6 @@ interface InfrastructureMap {
492
490
  * @generated from protobuf field: string default_database = 15
493
491
  */
494
492
  defaultDatabase: string;
495
- /**
496
- * Structured materialized views (replaces SqlResource for MVs)
497
- *
498
- * @generated from protobuf field: map<string, moose.proto.MaterializedView> materialized_views = 16
499
- */
500
- materializedViews: {
501
- [key: string]: MaterializedView;
502
- };
503
- /**
504
- * Structured views (replaces SqlResource for views)
505
- *
506
- * @generated from protobuf field: map<string, moose.proto.View> views = 17
507
- */
508
- views: {
509
- [key: string]: View;
510
- };
511
493
  }
512
494
  /**
513
495
  * @generated MessageType for protobuf message moose.proto.InfrastructureMap
@@ -1046,16 +1028,16 @@ interface TableIndex {
1046
1028
  * @generated MessageType for protobuf message moose.proto.TableIndex
1047
1029
  */
1048
1030
  declare const TableIndex: TableIndex$Type;
1049
- declare class Dmv1View$Type extends MessageType<Dmv1View> {
1031
+ declare class View$Type extends MessageType<View> {
1050
1032
  constructor();
1051
- create(value?: PartialMessage<Dmv1View>): Dmv1View;
1052
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Dmv1View): Dmv1View;
1053
- internalBinaryWrite(message: Dmv1View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1033
+ create(value?: PartialMessage<View>): View;
1034
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: View): View;
1035
+ internalBinaryWrite(message: View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1054
1036
  }
1055
1037
  /**
1056
- * @generated from protobuf message moose.proto.Dmv1View
1038
+ * @generated from protobuf message moose.proto.View
1057
1039
  */
1058
- interface Dmv1View {
1040
+ interface View {
1059
1041
  /**
1060
1042
  * @generated from protobuf field: string name = 1
1061
1043
  */
@@ -1078,9 +1060,9 @@ interface Dmv1View {
1078
1060
  };
1079
1061
  }
1080
1062
  /**
1081
- * @generated MessageType for protobuf message moose.proto.Dmv1View
1063
+ * @generated MessageType for protobuf message moose.proto.View
1082
1064
  */
1083
- declare const Dmv1View: Dmv1View$Type;
1065
+ declare const View: View$Type;
1084
1066
  declare class TableAlias$Type extends MessageType<TableAlias> {
1085
1067
  constructor();
1086
1068
  create(value?: PartialMessage<TableAlias>): TableAlias;
@@ -1100,154 +1082,6 @@ interface TableAlias {
1100
1082
  * @generated MessageType for protobuf message moose.proto.TableAlias
1101
1083
  */
1102
1084
  declare const TableAlias: TableAlias$Type;
1103
- declare class TableReference$Type extends MessageType<TableReference> {
1104
- constructor();
1105
- create(value?: PartialMessage<TableReference>): TableReference;
1106
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TableReference): TableReference;
1107
- internalBinaryWrite(message: TableReference, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1108
- }
1109
- /**
1110
- * Reference to a table, optionally qualified with database
1111
- *
1112
- * @generated from protobuf message moose.proto.TableReference
1113
- */
1114
- interface TableReference {
1115
- /**
1116
- * Database name (empty means use default database)
1117
- *
1118
- * @generated from protobuf field: optional string database = 1
1119
- */
1120
- database?: string;
1121
- /**
1122
- * Table name
1123
- *
1124
- * @generated from protobuf field: string table = 2
1125
- */
1126
- table: string;
1127
- }
1128
- /**
1129
- * @generated MessageType for protobuf message moose.proto.TableReference
1130
- */
1131
- declare const TableReference: TableReference$Type;
1132
- declare class SelectQuery$Type extends MessageType<SelectQuery> {
1133
- constructor();
1134
- create(value?: PartialMessage<SelectQuery>): SelectQuery;
1135
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SelectQuery): SelectQuery;
1136
- internalBinaryWrite(message: SelectQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1137
- }
1138
- /**
1139
- * Represents a SELECT query with semantic information
1140
- *
1141
- * @generated from protobuf message moose.proto.SelectQuery
1142
- */
1143
- interface SelectQuery {
1144
- /**
1145
- * The raw SELECT SQL statement
1146
- *
1147
- * @generated from protobuf field: string sql = 1
1148
- */
1149
- sql: string;
1150
- /**
1151
- * Tables/views referenced in the FROM clause(s)
1152
- *
1153
- * @generated from protobuf field: repeated moose.proto.TableReference source_tables = 2
1154
- */
1155
- sourceTables: TableReference[];
1156
- }
1157
- /**
1158
- * @generated MessageType for protobuf message moose.proto.SelectQuery
1159
- */
1160
- declare const SelectQuery: SelectQuery$Type;
1161
- declare class View$Type extends MessageType<View> {
1162
- constructor();
1163
- create(value?: PartialMessage<View>): View;
1164
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: View): View;
1165
- internalBinaryWrite(message: View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1166
- }
1167
- /**
1168
- * User-defined ClickHouse View with an arbitrary SELECT query.
1169
- * Views are virtual tables that compute results on-demand.
1170
- *
1171
- * @generated from protobuf message moose.proto.View
1172
- */
1173
- interface View {
1174
- /**
1175
- * Name of the view
1176
- *
1177
- * @generated from protobuf field: string name = 1
1178
- */
1179
- name: string;
1180
- /**
1181
- * Database where the view is created (empty = default database)
1182
- *
1183
- * @generated from protobuf field: optional string database = 2
1184
- */
1185
- database?: string;
1186
- /**
1187
- * The SELECT query that defines the view
1188
- *
1189
- * @generated from protobuf field: moose.proto.SelectQuery select_query = 3
1190
- */
1191
- selectQuery?: SelectQuery;
1192
- /**
1193
- * Optional metadata for the view (e.g., description, source file)
1194
- *
1195
- * @generated from protobuf field: optional moose.proto.Metadata metadata = 4
1196
- */
1197
- metadata?: Metadata;
1198
- }
1199
- /**
1200
- * @generated MessageType for protobuf message moose.proto.View
1201
- */
1202
- declare const View: View$Type;
1203
- declare class MaterializedView$Type extends MessageType<MaterializedView> {
1204
- constructor();
1205
- create(value?: PartialMessage<MaterializedView>): MaterializedView;
1206
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MaterializedView): MaterializedView;
1207
- internalBinaryWrite(message: MaterializedView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1208
- }
1209
- /**
1210
- * ClickHouse Materialized View that writes transformed data to a target table.
1211
- * MVs run the SELECT query on insert and persist results.
1212
- *
1213
- * @generated from protobuf message moose.proto.MaterializedView
1214
- */
1215
- interface MaterializedView {
1216
- /**
1217
- * Name of the materialized view
1218
- *
1219
- * @generated from protobuf field: string name = 1
1220
- */
1221
- name: string;
1222
- /**
1223
- * Database where the MV is created (empty = default database)
1224
- *
1225
- * @generated from protobuf field: optional string database = 2
1226
- */
1227
- database?: string;
1228
- /**
1229
- * The SELECT query that defines the transformation
1230
- *
1231
- * @generated from protobuf field: moose.proto.SelectQuery select_query = 3
1232
- */
1233
- selectQuery?: SelectQuery;
1234
- /**
1235
- * Target table where transformed data is written (the TO clause)
1236
- *
1237
- * @generated from protobuf field: moose.proto.TableReference target_table = 4
1238
- */
1239
- targetTable?: TableReference;
1240
- /**
1241
- * Optional metadata for the materialized view (e.g., description, source file)
1242
- *
1243
- * @generated from protobuf field: optional moose.proto.Metadata metadata = 5
1244
- */
1245
- metadata?: Metadata;
1246
- }
1247
- /**
1248
- * @generated MessageType for protobuf message moose.proto.MaterializedView
1249
- */
1250
- declare const MaterializedView: MaterializedView$Type;
1251
1085
  declare class TopicToTableSyncProcess$Type extends MessageType<TopicToTableSyncProcess> {
1252
1086
  constructor();
1253
1087
  create(value?: PartialMessage<TopicToTableSyncProcess>): TopicToTableSyncProcess;
@@ -1968,11 +1802,11 @@ interface InfrastructureSignature {
1968
1802
  */
1969
1803
  tableId: string;
1970
1804
  } | {
1971
- oneofKind: "dmv1ViewId";
1805
+ oneofKind: "viewId";
1972
1806
  /**
1973
- * @generated from protobuf field: string dmv1_view_id = 3
1807
+ * @generated from protobuf field: string view_id = 3
1974
1808
  */
1975
- dmv1ViewId: string;
1809
+ viewId: string;
1976
1810
  } | {
1977
1811
  oneofKind: "sqlResourceId";
1978
1812
  /**
@@ -1991,18 +1825,6 @@ interface InfrastructureSignature {
1991
1825
  * @generated from protobuf field: string topic_to_table_sync_process_id = 6
1992
1826
  */
1993
1827
  topicToTableSyncProcessId: string;
1994
- } | {
1995
- oneofKind: "materializedViewId";
1996
- /**
1997
- * @generated from protobuf field: string materialized_view_id = 7
1998
- */
1999
- materializedViewId: string;
2000
- } | {
2001
- oneofKind: "viewId";
2002
- /**
2003
- * @generated from protobuf field: string view_id = 8
2004
- */
2005
- viewId: string;
2006
1828
  } | {
2007
1829
  oneofKind: undefined;
2008
1830
  };
@@ -2058,4 +1880,4 @@ interface WebAppMetadata {
2058
1880
  */
2059
1881
  declare const WebAppMetadata: WebAppMetadata$Type;
2060
1882
 
2061
- export { ApiEndpoint, Column, ColumnType, ConsumptionQueryParam, DataEnum, DateType, Decimal, Dmv1View, EgressDetails, EndpointIngestionFormat, EnumMember, EnumValue, FloatType, FunctionProcess, InfrastructureMap, InfrastructureSignature, IngressDetails, InitialDataLoad, IntType, Json, JsonTypedPath, LifeCycle, Map, MaterializedView, Metadata, Method, Nested, OrchestrationWorker, OrderBy, OrderByFields, PrimitiveSignature, PrimitiveTypes, SchemaRegistry, SchemaRegistry_Encoding, SelectQuery, SimpleColumnType, SourceLocation, SqlResource, SubjectVersion, Table, TableAlias, TableIndex, TableReference, Topic, TopicToTableSyncProcess, TopicToTopicSyncProcess, Tuple, View, WebApp, WebAppMetadata };
1883
+ export { ApiEndpoint, Column, ColumnType, ConsumptionQueryParam, DataEnum, DateType, Decimal, EgressDetails, EndpointIngestionFormat, EnumMember, EnumValue, FloatType, FunctionProcess, InfrastructureMap, InfrastructureSignature, IngressDetails, InitialDataLoad, IntType, Json, JsonTypedPath, LifeCycle, Map, Metadata, Method, Nested, OrchestrationWorker, OrderBy, OrderByFields, PrimitiveSignature, PrimitiveTypes, SchemaRegistry, SchemaRegistry_Encoding, SimpleColumnType, SourceLocation, SqlResource, SubjectVersion, Table, TableAlias, TableIndex, Topic, TopicToTableSyncProcess, TopicToTopicSyncProcess, Tuple, View, WebApp, WebAppMetadata };
@@ -410,8 +410,6 @@ declare class InfrastructureMap$Type extends MessageType<InfrastructureMap> {
410
410
  private binaryReadMap11;
411
411
  private binaryReadMap12;
412
412
  private binaryReadMap13;
413
- private binaryReadMap16;
414
- private binaryReadMap17;
415
413
  internalBinaryWrite(message: InfrastructureMap, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
416
414
  }
417
415
  /**
@@ -437,10 +435,10 @@ interface InfrastructureMap {
437
435
  [key: string]: Table;
438
436
  };
439
437
  /**
440
- * @generated from protobuf field: map<string, moose.proto.Dmv1View> dmv1_views = 4
438
+ * @generated from protobuf field: map<string, moose.proto.View> views = 4
441
439
  */
442
- dmv1Views: {
443
- [key: string]: Dmv1View;
440
+ views: {
441
+ [key: string]: View;
444
442
  };
445
443
  /**
446
444
  * @generated from protobuf field: map<string, moose.proto.TopicToTableSyncProcess> topic_to_table_sync_processes = 5
@@ -492,22 +490,6 @@ interface InfrastructureMap {
492
490
  * @generated from protobuf field: string default_database = 15
493
491
  */
494
492
  defaultDatabase: string;
495
- /**
496
- * Structured materialized views (replaces SqlResource for MVs)
497
- *
498
- * @generated from protobuf field: map<string, moose.proto.MaterializedView> materialized_views = 16
499
- */
500
- materializedViews: {
501
- [key: string]: MaterializedView;
502
- };
503
- /**
504
- * Structured views (replaces SqlResource for views)
505
- *
506
- * @generated from protobuf field: map<string, moose.proto.View> views = 17
507
- */
508
- views: {
509
- [key: string]: View;
510
- };
511
493
  }
512
494
  /**
513
495
  * @generated MessageType for protobuf message moose.proto.InfrastructureMap
@@ -1046,16 +1028,16 @@ interface TableIndex {
1046
1028
  * @generated MessageType for protobuf message moose.proto.TableIndex
1047
1029
  */
1048
1030
  declare const TableIndex: TableIndex$Type;
1049
- declare class Dmv1View$Type extends MessageType<Dmv1View> {
1031
+ declare class View$Type extends MessageType<View> {
1050
1032
  constructor();
1051
- create(value?: PartialMessage<Dmv1View>): Dmv1View;
1052
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Dmv1View): Dmv1View;
1053
- internalBinaryWrite(message: Dmv1View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1033
+ create(value?: PartialMessage<View>): View;
1034
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: View): View;
1035
+ internalBinaryWrite(message: View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1054
1036
  }
1055
1037
  /**
1056
- * @generated from protobuf message moose.proto.Dmv1View
1038
+ * @generated from protobuf message moose.proto.View
1057
1039
  */
1058
- interface Dmv1View {
1040
+ interface View {
1059
1041
  /**
1060
1042
  * @generated from protobuf field: string name = 1
1061
1043
  */
@@ -1078,9 +1060,9 @@ interface Dmv1View {
1078
1060
  };
1079
1061
  }
1080
1062
  /**
1081
- * @generated MessageType for protobuf message moose.proto.Dmv1View
1063
+ * @generated MessageType for protobuf message moose.proto.View
1082
1064
  */
1083
- declare const Dmv1View: Dmv1View$Type;
1065
+ declare const View: View$Type;
1084
1066
  declare class TableAlias$Type extends MessageType<TableAlias> {
1085
1067
  constructor();
1086
1068
  create(value?: PartialMessage<TableAlias>): TableAlias;
@@ -1100,154 +1082,6 @@ interface TableAlias {
1100
1082
  * @generated MessageType for protobuf message moose.proto.TableAlias
1101
1083
  */
1102
1084
  declare const TableAlias: TableAlias$Type;
1103
- declare class TableReference$Type extends MessageType<TableReference> {
1104
- constructor();
1105
- create(value?: PartialMessage<TableReference>): TableReference;
1106
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TableReference): TableReference;
1107
- internalBinaryWrite(message: TableReference, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1108
- }
1109
- /**
1110
- * Reference to a table, optionally qualified with database
1111
- *
1112
- * @generated from protobuf message moose.proto.TableReference
1113
- */
1114
- interface TableReference {
1115
- /**
1116
- * Database name (empty means use default database)
1117
- *
1118
- * @generated from protobuf field: optional string database = 1
1119
- */
1120
- database?: string;
1121
- /**
1122
- * Table name
1123
- *
1124
- * @generated from protobuf field: string table = 2
1125
- */
1126
- table: string;
1127
- }
1128
- /**
1129
- * @generated MessageType for protobuf message moose.proto.TableReference
1130
- */
1131
- declare const TableReference: TableReference$Type;
1132
- declare class SelectQuery$Type extends MessageType<SelectQuery> {
1133
- constructor();
1134
- create(value?: PartialMessage<SelectQuery>): SelectQuery;
1135
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SelectQuery): SelectQuery;
1136
- internalBinaryWrite(message: SelectQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1137
- }
1138
- /**
1139
- * Represents a SELECT query with semantic information
1140
- *
1141
- * @generated from protobuf message moose.proto.SelectQuery
1142
- */
1143
- interface SelectQuery {
1144
- /**
1145
- * The raw SELECT SQL statement
1146
- *
1147
- * @generated from protobuf field: string sql = 1
1148
- */
1149
- sql: string;
1150
- /**
1151
- * Tables/views referenced in the FROM clause(s)
1152
- *
1153
- * @generated from protobuf field: repeated moose.proto.TableReference source_tables = 2
1154
- */
1155
- sourceTables: TableReference[];
1156
- }
1157
- /**
1158
- * @generated MessageType for protobuf message moose.proto.SelectQuery
1159
- */
1160
- declare const SelectQuery: SelectQuery$Type;
1161
- declare class View$Type extends MessageType<View> {
1162
- constructor();
1163
- create(value?: PartialMessage<View>): View;
1164
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: View): View;
1165
- internalBinaryWrite(message: View, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1166
- }
1167
- /**
1168
- * User-defined ClickHouse View with an arbitrary SELECT query.
1169
- * Views are virtual tables that compute results on-demand.
1170
- *
1171
- * @generated from protobuf message moose.proto.View
1172
- */
1173
- interface View {
1174
- /**
1175
- * Name of the view
1176
- *
1177
- * @generated from protobuf field: string name = 1
1178
- */
1179
- name: string;
1180
- /**
1181
- * Database where the view is created (empty = default database)
1182
- *
1183
- * @generated from protobuf field: optional string database = 2
1184
- */
1185
- database?: string;
1186
- /**
1187
- * The SELECT query that defines the view
1188
- *
1189
- * @generated from protobuf field: moose.proto.SelectQuery select_query = 3
1190
- */
1191
- selectQuery?: SelectQuery;
1192
- /**
1193
- * Optional metadata for the view (e.g., description, source file)
1194
- *
1195
- * @generated from protobuf field: optional moose.proto.Metadata metadata = 4
1196
- */
1197
- metadata?: Metadata;
1198
- }
1199
- /**
1200
- * @generated MessageType for protobuf message moose.proto.View
1201
- */
1202
- declare const View: View$Type;
1203
- declare class MaterializedView$Type extends MessageType<MaterializedView> {
1204
- constructor();
1205
- create(value?: PartialMessage<MaterializedView>): MaterializedView;
1206
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MaterializedView): MaterializedView;
1207
- internalBinaryWrite(message: MaterializedView, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
1208
- }
1209
- /**
1210
- * ClickHouse Materialized View that writes transformed data to a target table.
1211
- * MVs run the SELECT query on insert and persist results.
1212
- *
1213
- * @generated from protobuf message moose.proto.MaterializedView
1214
- */
1215
- interface MaterializedView {
1216
- /**
1217
- * Name of the materialized view
1218
- *
1219
- * @generated from protobuf field: string name = 1
1220
- */
1221
- name: string;
1222
- /**
1223
- * Database where the MV is created (empty = default database)
1224
- *
1225
- * @generated from protobuf field: optional string database = 2
1226
- */
1227
- database?: string;
1228
- /**
1229
- * The SELECT query that defines the transformation
1230
- *
1231
- * @generated from protobuf field: moose.proto.SelectQuery select_query = 3
1232
- */
1233
- selectQuery?: SelectQuery;
1234
- /**
1235
- * Target table where transformed data is written (the TO clause)
1236
- *
1237
- * @generated from protobuf field: moose.proto.TableReference target_table = 4
1238
- */
1239
- targetTable?: TableReference;
1240
- /**
1241
- * Optional metadata for the materialized view (e.g., description, source file)
1242
- *
1243
- * @generated from protobuf field: optional moose.proto.Metadata metadata = 5
1244
- */
1245
- metadata?: Metadata;
1246
- }
1247
- /**
1248
- * @generated MessageType for protobuf message moose.proto.MaterializedView
1249
- */
1250
- declare const MaterializedView: MaterializedView$Type;
1251
1085
  declare class TopicToTableSyncProcess$Type extends MessageType<TopicToTableSyncProcess> {
1252
1086
  constructor();
1253
1087
  create(value?: PartialMessage<TopicToTableSyncProcess>): TopicToTableSyncProcess;
@@ -1968,11 +1802,11 @@ interface InfrastructureSignature {
1968
1802
  */
1969
1803
  tableId: string;
1970
1804
  } | {
1971
- oneofKind: "dmv1ViewId";
1805
+ oneofKind: "viewId";
1972
1806
  /**
1973
- * @generated from protobuf field: string dmv1_view_id = 3
1807
+ * @generated from protobuf field: string view_id = 3
1974
1808
  */
1975
- dmv1ViewId: string;
1809
+ viewId: string;
1976
1810
  } | {
1977
1811
  oneofKind: "sqlResourceId";
1978
1812
  /**
@@ -1991,18 +1825,6 @@ interface InfrastructureSignature {
1991
1825
  * @generated from protobuf field: string topic_to_table_sync_process_id = 6
1992
1826
  */
1993
1827
  topicToTableSyncProcessId: string;
1994
- } | {
1995
- oneofKind: "materializedViewId";
1996
- /**
1997
- * @generated from protobuf field: string materialized_view_id = 7
1998
- */
1999
- materializedViewId: string;
2000
- } | {
2001
- oneofKind: "viewId";
2002
- /**
2003
- * @generated from protobuf field: string view_id = 8
2004
- */
2005
- viewId: string;
2006
1828
  } | {
2007
1829
  oneofKind: undefined;
2008
1830
  };
@@ -2058,4 +1880,4 @@ interface WebAppMetadata {
2058
1880
  */
2059
1881
  declare const WebAppMetadata: WebAppMetadata$Type;
2060
1882
 
2061
- export { ApiEndpoint, Column, ColumnType, ConsumptionQueryParam, DataEnum, DateType, Decimal, Dmv1View, EgressDetails, EndpointIngestionFormat, EnumMember, EnumValue, FloatType, FunctionProcess, InfrastructureMap, InfrastructureSignature, IngressDetails, InitialDataLoad, IntType, Json, JsonTypedPath, LifeCycle, Map, MaterializedView, Metadata, Method, Nested, OrchestrationWorker, OrderBy, OrderByFields, PrimitiveSignature, PrimitiveTypes, SchemaRegistry, SchemaRegistry_Encoding, SelectQuery, SimpleColumnType, SourceLocation, SqlResource, SubjectVersion, Table, TableAlias, TableIndex, TableReference, Topic, TopicToTableSyncProcess, TopicToTopicSyncProcess, Tuple, View, WebApp, WebAppMetadata };
1883
+ export { ApiEndpoint, Column, ColumnType, ConsumptionQueryParam, DataEnum, DateType, Decimal, EgressDetails, EndpointIngestionFormat, EnumMember, EnumValue, FloatType, FunctionProcess, InfrastructureMap, InfrastructureSignature, IngressDetails, InitialDataLoad, IntType, Json, JsonTypedPath, LifeCycle, Map, Metadata, Method, Nested, OrchestrationWorker, OrderBy, OrderByFields, PrimitiveSignature, PrimitiveTypes, SchemaRegistry, SchemaRegistry_Encoding, SimpleColumnType, SourceLocation, SqlResource, SubjectVersion, Table, TableAlias, TableIndex, Topic, TopicToTableSyncProcess, TopicToTopicSyncProcess, Tuple, View, WebApp, WebAppMetadata };