@wundergraph/cosmo-connect 0.68.0 → 0.70.0
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.
- package/dist/node/v1/node_pb.d.ts +82 -40
- package/dist/node/v1/node_pb.js +114 -44
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +33 -3
- package/dist/platform/v1/platform-PlatformService_connectquery.js +33 -3
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +22 -2
- package/dist/platform/v1/platform_connect.js +22 -2
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +153 -0
- package/dist/platform/v1/platform_pb.js +235 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -424,9 +424,9 @@ export declare class DataSourceConfiguration extends Message<DataSourceConfigura
|
|
|
424
424
|
*/
|
|
425
425
|
requires: RequiredField[];
|
|
426
426
|
/**
|
|
427
|
-
* @generated from field: wg.cosmo.node.v1.
|
|
427
|
+
* @generated from field: wg.cosmo.node.v1.DataSourceCustomEvents custom_events = 13;
|
|
428
428
|
*/
|
|
429
|
-
customEvents?:
|
|
429
|
+
customEvents?: DataSourceCustomEvents;
|
|
430
430
|
/**
|
|
431
431
|
* @generated from field: repeated wg.cosmo.node.v1.EntityInterfaceConfiguration entity_interfaces = 14;
|
|
432
432
|
*/
|
|
@@ -748,9 +748,9 @@ export declare class DataSourceCustom_GraphQL extends Message<DataSourceCustom_G
|
|
|
748
748
|
static equals(a: DataSourceCustom_GraphQL | PlainMessage<DataSourceCustom_GraphQL> | undefined, b: DataSourceCustom_GraphQL | PlainMessage<DataSourceCustom_GraphQL> | undefined): boolean;
|
|
749
749
|
}
|
|
750
750
|
/**
|
|
751
|
-
* @generated from message wg.cosmo.node.v1.
|
|
751
|
+
* @generated from message wg.cosmo.node.v1.NatsStreamConfiguration
|
|
752
752
|
*/
|
|
753
|
-
export declare class
|
|
753
|
+
export declare class NatsStreamConfiguration extends Message<NatsStreamConfiguration> {
|
|
754
754
|
/**
|
|
755
755
|
* @generated from field: string consumer_name = 1;
|
|
756
756
|
*/
|
|
@@ -759,68 +759,110 @@ export declare class StreamConfiguration extends Message<StreamConfiguration> {
|
|
|
759
759
|
* @generated from field: string stream_name = 2;
|
|
760
760
|
*/
|
|
761
761
|
streamName: string;
|
|
762
|
-
constructor(data?: PartialMessage<
|
|
762
|
+
constructor(data?: PartialMessage<NatsStreamConfiguration>);
|
|
763
763
|
static readonly runtime: typeof proto3;
|
|
764
|
-
static readonly typeName = "wg.cosmo.node.v1.
|
|
764
|
+
static readonly typeName = "wg.cosmo.node.v1.NatsStreamConfiguration";
|
|
765
765
|
static readonly fields: FieldList;
|
|
766
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
767
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
768
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
769
|
-
static equals(a:
|
|
766
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NatsStreamConfiguration;
|
|
767
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NatsStreamConfiguration;
|
|
768
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NatsStreamConfiguration;
|
|
769
|
+
static equals(a: NatsStreamConfiguration | PlainMessage<NatsStreamConfiguration> | undefined, b: NatsStreamConfiguration | PlainMessage<NatsStreamConfiguration> | undefined): boolean;
|
|
770
770
|
}
|
|
771
771
|
/**
|
|
772
|
-
* @generated from message wg.cosmo.node.v1.
|
|
772
|
+
* @generated from message wg.cosmo.node.v1.NatsEventConfiguration
|
|
773
773
|
*/
|
|
774
|
-
export declare class
|
|
774
|
+
export declare class NatsEventConfiguration extends Message<NatsEventConfiguration> {
|
|
775
775
|
/**
|
|
776
|
-
* @generated from field: wg.cosmo.node.v1.
|
|
776
|
+
* @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
|
|
777
777
|
*/
|
|
778
|
-
|
|
778
|
+
engineEventConfiguration?: EngineEventConfiguration;
|
|
779
779
|
/**
|
|
780
|
-
* @generated from field: string
|
|
780
|
+
* @generated from field: repeated string subjects = 2;
|
|
781
781
|
*/
|
|
782
|
-
|
|
782
|
+
subjects: string[];
|
|
783
783
|
/**
|
|
784
|
-
* @generated from field:
|
|
784
|
+
* @generated from field: wg.cosmo.node.v1.NatsStreamConfiguration stream_configuration = 3;
|
|
785
785
|
*/
|
|
786
|
-
|
|
786
|
+
streamConfiguration?: NatsStreamConfiguration;
|
|
787
|
+
constructor(data?: PartialMessage<NatsEventConfiguration>);
|
|
788
|
+
static readonly runtime: typeof proto3;
|
|
789
|
+
static readonly typeName = "wg.cosmo.node.v1.NatsEventConfiguration";
|
|
790
|
+
static readonly fields: FieldList;
|
|
791
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): NatsEventConfiguration;
|
|
792
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): NatsEventConfiguration;
|
|
793
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): NatsEventConfiguration;
|
|
794
|
+
static equals(a: NatsEventConfiguration | PlainMessage<NatsEventConfiguration> | undefined, b: NatsEventConfiguration | PlainMessage<NatsEventConfiguration> | undefined): boolean;
|
|
795
|
+
}
|
|
796
|
+
/**
|
|
797
|
+
* @generated from message wg.cosmo.node.v1.KafkaEventConfiguration
|
|
798
|
+
*/
|
|
799
|
+
export declare class KafkaEventConfiguration extends Message<KafkaEventConfiguration> {
|
|
787
800
|
/**
|
|
788
|
-
* @generated from field:
|
|
801
|
+
* @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
|
|
789
802
|
*/
|
|
790
|
-
|
|
803
|
+
engineEventConfiguration?: EngineEventConfiguration;
|
|
791
804
|
/**
|
|
792
|
-
* @generated from field: string
|
|
805
|
+
* @generated from field: repeated string topics = 2;
|
|
793
806
|
*/
|
|
794
|
-
|
|
807
|
+
topics: string[];
|
|
808
|
+
constructor(data?: PartialMessage<KafkaEventConfiguration>);
|
|
809
|
+
static readonly runtime: typeof proto3;
|
|
810
|
+
static readonly typeName = "wg.cosmo.node.v1.KafkaEventConfiguration";
|
|
811
|
+
static readonly fields: FieldList;
|
|
812
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): KafkaEventConfiguration;
|
|
813
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): KafkaEventConfiguration;
|
|
814
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): KafkaEventConfiguration;
|
|
815
|
+
static equals(a: KafkaEventConfiguration | PlainMessage<KafkaEventConfiguration> | undefined, b: KafkaEventConfiguration | PlainMessage<KafkaEventConfiguration> | undefined): boolean;
|
|
816
|
+
}
|
|
817
|
+
/**
|
|
818
|
+
* @generated from message wg.cosmo.node.v1.EngineEventConfiguration
|
|
819
|
+
*/
|
|
820
|
+
export declare class EngineEventConfiguration extends Message<EngineEventConfiguration> {
|
|
821
|
+
/**
|
|
822
|
+
* @generated from field: string provider_id = 1;
|
|
823
|
+
*/
|
|
824
|
+
providerId: string;
|
|
825
|
+
/**
|
|
826
|
+
* @generated from field: wg.cosmo.node.v1.EventType type = 2;
|
|
827
|
+
*/
|
|
828
|
+
type: EventType;
|
|
795
829
|
/**
|
|
796
|
-
* @generated from field:
|
|
830
|
+
* @generated from field: string type_name = 3;
|
|
797
831
|
*/
|
|
798
|
-
|
|
799
|
-
|
|
832
|
+
typeName: string;
|
|
833
|
+
/**
|
|
834
|
+
* @generated from field: string field_name = 4;
|
|
835
|
+
*/
|
|
836
|
+
fieldName: string;
|
|
837
|
+
constructor(data?: PartialMessage<EngineEventConfiguration>);
|
|
800
838
|
static readonly runtime: typeof proto3;
|
|
801
|
-
static readonly typeName = "wg.cosmo.node.v1.
|
|
839
|
+
static readonly typeName = "wg.cosmo.node.v1.EngineEventConfiguration";
|
|
802
840
|
static readonly fields: FieldList;
|
|
803
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
804
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
805
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
806
|
-
static equals(a:
|
|
841
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EngineEventConfiguration;
|
|
842
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EngineEventConfiguration;
|
|
843
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EngineEventConfiguration;
|
|
844
|
+
static equals(a: EngineEventConfiguration | PlainMessage<EngineEventConfiguration> | undefined, b: EngineEventConfiguration | PlainMessage<EngineEventConfiguration> | undefined): boolean;
|
|
807
845
|
}
|
|
808
846
|
/**
|
|
809
|
-
* @generated from message wg.cosmo.node.v1.
|
|
847
|
+
* @generated from message wg.cosmo.node.v1.DataSourceCustomEvents
|
|
810
848
|
*/
|
|
811
|
-
export declare class
|
|
849
|
+
export declare class DataSourceCustomEvents extends Message<DataSourceCustomEvents> {
|
|
850
|
+
/**
|
|
851
|
+
* @generated from field: repeated wg.cosmo.node.v1.NatsEventConfiguration nats = 1;
|
|
852
|
+
*/
|
|
853
|
+
nats: NatsEventConfiguration[];
|
|
812
854
|
/**
|
|
813
|
-
* @generated from field: repeated wg.cosmo.node.v1.
|
|
855
|
+
* @generated from field: repeated wg.cosmo.node.v1.KafkaEventConfiguration kafka = 2;
|
|
814
856
|
*/
|
|
815
|
-
|
|
816
|
-
constructor(data?: PartialMessage<
|
|
857
|
+
kafka: KafkaEventConfiguration[];
|
|
858
|
+
constructor(data?: PartialMessage<DataSourceCustomEvents>);
|
|
817
859
|
static readonly runtime: typeof proto3;
|
|
818
|
-
static readonly typeName = "wg.cosmo.node.v1.
|
|
860
|
+
static readonly typeName = "wg.cosmo.node.v1.DataSourceCustomEvents";
|
|
819
861
|
static readonly fields: FieldList;
|
|
820
|
-
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>):
|
|
821
|
-
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>):
|
|
822
|
-
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>):
|
|
823
|
-
static equals(a:
|
|
862
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DataSourceCustomEvents;
|
|
863
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DataSourceCustomEvents;
|
|
864
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DataSourceCustomEvents;
|
|
865
|
+
static equals(a: DataSourceCustomEvents | PlainMessage<DataSourceCustomEvents> | undefined, b: DataSourceCustomEvents | PlainMessage<DataSourceCustomEvents> | undefined): boolean;
|
|
824
866
|
}
|
|
825
867
|
/**
|
|
826
868
|
* @generated from message wg.cosmo.node.v1.DataSourceCustom_Static
|
package/dist/node/v1/node_pb.js
CHANGED
|
@@ -625,7 +625,7 @@ export class DataSourceConfiguration extends Message {
|
|
|
625
625
|
*/
|
|
626
626
|
requires = [];
|
|
627
627
|
/**
|
|
628
|
-
* @generated from field: wg.cosmo.node.v1.
|
|
628
|
+
* @generated from field: wg.cosmo.node.v1.DataSourceCustomEvents custom_events = 13;
|
|
629
629
|
*/
|
|
630
630
|
customEvents;
|
|
631
631
|
/**
|
|
@@ -655,7 +655,7 @@ export class DataSourceConfiguration extends Message {
|
|
|
655
655
|
{ no: 10, name: "keys", kind: "message", T: RequiredField, repeated: true },
|
|
656
656
|
{ no: 11, name: "provides", kind: "message", T: RequiredField, repeated: true },
|
|
657
657
|
{ no: 12, name: "requires", kind: "message", T: RequiredField, repeated: true },
|
|
658
|
-
{ no: 13, name: "custom_events", kind: "message", T:
|
|
658
|
+
{ no: 13, name: "custom_events", kind: "message", T: DataSourceCustomEvents },
|
|
659
659
|
{ no: 14, name: "entity_interfaces", kind: "message", T: EntityInterfaceConfiguration, repeated: true },
|
|
660
660
|
{ no: 15, name: "interface_objects", kind: "message", T: EntityInterfaceConfiguration, repeated: true },
|
|
661
661
|
]);
|
|
@@ -1143,9 +1143,9 @@ export class DataSourceCustom_GraphQL extends Message {
|
|
|
1143
1143
|
}
|
|
1144
1144
|
}
|
|
1145
1145
|
/**
|
|
1146
|
-
* @generated from message wg.cosmo.node.v1.
|
|
1146
|
+
* @generated from message wg.cosmo.node.v1.NatsStreamConfiguration
|
|
1147
1147
|
*/
|
|
1148
|
-
export class
|
|
1148
|
+
export class NatsStreamConfiguration extends Message {
|
|
1149
1149
|
/**
|
|
1150
1150
|
* @generated from field: string consumer_name = 1;
|
|
1151
1151
|
*/
|
|
@@ -1159,107 +1159,177 @@ export class StreamConfiguration extends Message {
|
|
|
1159
1159
|
proto3.util.initPartial(data, this);
|
|
1160
1160
|
}
|
|
1161
1161
|
static runtime = proto3;
|
|
1162
|
-
static typeName = "wg.cosmo.node.v1.
|
|
1162
|
+
static typeName = "wg.cosmo.node.v1.NatsStreamConfiguration";
|
|
1163
1163
|
static fields = proto3.util.newFieldList(() => [
|
|
1164
1164
|
{ no: 1, name: "consumer_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1165
1165
|
{ no: 2, name: "stream_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1166
1166
|
]);
|
|
1167
1167
|
static fromBinary(bytes, options) {
|
|
1168
|
-
return new
|
|
1168
|
+
return new NatsStreamConfiguration().fromBinary(bytes, options);
|
|
1169
1169
|
}
|
|
1170
1170
|
static fromJson(jsonValue, options) {
|
|
1171
|
-
return new
|
|
1171
|
+
return new NatsStreamConfiguration().fromJson(jsonValue, options);
|
|
1172
1172
|
}
|
|
1173
1173
|
static fromJsonString(jsonString, options) {
|
|
1174
|
-
return new
|
|
1174
|
+
return new NatsStreamConfiguration().fromJsonString(jsonString, options);
|
|
1175
1175
|
}
|
|
1176
1176
|
static equals(a, b) {
|
|
1177
|
-
return proto3.util.equals(
|
|
1177
|
+
return proto3.util.equals(NatsStreamConfiguration, a, b);
|
|
1178
1178
|
}
|
|
1179
1179
|
}
|
|
1180
1180
|
/**
|
|
1181
|
-
* @generated from message wg.cosmo.node.v1.
|
|
1181
|
+
* @generated from message wg.cosmo.node.v1.NatsEventConfiguration
|
|
1182
1182
|
*/
|
|
1183
|
-
export class
|
|
1183
|
+
export class NatsEventConfiguration extends Message {
|
|
1184
1184
|
/**
|
|
1185
|
-
* @generated from field: wg.cosmo.node.v1.
|
|
1185
|
+
* @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
|
|
1186
1186
|
*/
|
|
1187
|
-
|
|
1187
|
+
engineEventConfiguration;
|
|
1188
1188
|
/**
|
|
1189
|
-
* @generated from field: string
|
|
1189
|
+
* @generated from field: repeated string subjects = 2;
|
|
1190
1190
|
*/
|
|
1191
|
-
|
|
1191
|
+
subjects = [];
|
|
1192
1192
|
/**
|
|
1193
|
-
* @generated from field:
|
|
1193
|
+
* @generated from field: wg.cosmo.node.v1.NatsStreamConfiguration stream_configuration = 3;
|
|
1194
1194
|
*/
|
|
1195
|
-
|
|
1195
|
+
streamConfiguration;
|
|
1196
|
+
constructor(data) {
|
|
1197
|
+
super();
|
|
1198
|
+
proto3.util.initPartial(data, this);
|
|
1199
|
+
}
|
|
1200
|
+
static runtime = proto3;
|
|
1201
|
+
static typeName = "wg.cosmo.node.v1.NatsEventConfiguration";
|
|
1202
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1203
|
+
{ no: 1, name: "engine_event_configuration", kind: "message", T: EngineEventConfiguration },
|
|
1204
|
+
{ no: 2, name: "subjects", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1205
|
+
{ no: 3, name: "stream_configuration", kind: "message", T: NatsStreamConfiguration },
|
|
1206
|
+
]);
|
|
1207
|
+
static fromBinary(bytes, options) {
|
|
1208
|
+
return new NatsEventConfiguration().fromBinary(bytes, options);
|
|
1209
|
+
}
|
|
1210
|
+
static fromJson(jsonValue, options) {
|
|
1211
|
+
return new NatsEventConfiguration().fromJson(jsonValue, options);
|
|
1212
|
+
}
|
|
1213
|
+
static fromJsonString(jsonString, options) {
|
|
1214
|
+
return new NatsEventConfiguration().fromJsonString(jsonString, options);
|
|
1215
|
+
}
|
|
1216
|
+
static equals(a, b) {
|
|
1217
|
+
return proto3.util.equals(NatsEventConfiguration, a, b);
|
|
1218
|
+
}
|
|
1219
|
+
}
|
|
1220
|
+
/**
|
|
1221
|
+
* @generated from message wg.cosmo.node.v1.KafkaEventConfiguration
|
|
1222
|
+
*/
|
|
1223
|
+
export class KafkaEventConfiguration extends Message {
|
|
1196
1224
|
/**
|
|
1197
|
-
* @generated from field:
|
|
1225
|
+
* @generated from field: wg.cosmo.node.v1.EngineEventConfiguration engine_event_configuration = 1;
|
|
1198
1226
|
*/
|
|
1199
|
-
|
|
1227
|
+
engineEventConfiguration;
|
|
1228
|
+
/**
|
|
1229
|
+
* @generated from field: repeated string topics = 2;
|
|
1230
|
+
*/
|
|
1231
|
+
topics = [];
|
|
1232
|
+
constructor(data) {
|
|
1233
|
+
super();
|
|
1234
|
+
proto3.util.initPartial(data, this);
|
|
1235
|
+
}
|
|
1236
|
+
static runtime = proto3;
|
|
1237
|
+
static typeName = "wg.cosmo.node.v1.KafkaEventConfiguration";
|
|
1238
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1239
|
+
{ no: 1, name: "engine_event_configuration", kind: "message", T: EngineEventConfiguration },
|
|
1240
|
+
{ no: 2, name: "topics", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
1241
|
+
]);
|
|
1242
|
+
static fromBinary(bytes, options) {
|
|
1243
|
+
return new KafkaEventConfiguration().fromBinary(bytes, options);
|
|
1244
|
+
}
|
|
1245
|
+
static fromJson(jsonValue, options) {
|
|
1246
|
+
return new KafkaEventConfiguration().fromJson(jsonValue, options);
|
|
1247
|
+
}
|
|
1248
|
+
static fromJsonString(jsonString, options) {
|
|
1249
|
+
return new KafkaEventConfiguration().fromJsonString(jsonString, options);
|
|
1250
|
+
}
|
|
1251
|
+
static equals(a, b) {
|
|
1252
|
+
return proto3.util.equals(KafkaEventConfiguration, a, b);
|
|
1253
|
+
}
|
|
1254
|
+
}
|
|
1255
|
+
/**
|
|
1256
|
+
* @generated from message wg.cosmo.node.v1.EngineEventConfiguration
|
|
1257
|
+
*/
|
|
1258
|
+
export class EngineEventConfiguration extends Message {
|
|
1200
1259
|
/**
|
|
1201
|
-
* @generated from field: string
|
|
1260
|
+
* @generated from field: string provider_id = 1;
|
|
1202
1261
|
*/
|
|
1203
|
-
|
|
1262
|
+
providerId = "";
|
|
1204
1263
|
/**
|
|
1205
|
-
* @generated from field: wg.cosmo.node.v1.
|
|
1264
|
+
* @generated from field: wg.cosmo.node.v1.EventType type = 2;
|
|
1206
1265
|
*/
|
|
1207
|
-
|
|
1266
|
+
type = EventType.PUBLISH;
|
|
1267
|
+
/**
|
|
1268
|
+
* @generated from field: string type_name = 3;
|
|
1269
|
+
*/
|
|
1270
|
+
typeName = "";
|
|
1271
|
+
/**
|
|
1272
|
+
* @generated from field: string field_name = 4;
|
|
1273
|
+
*/
|
|
1274
|
+
fieldName = "";
|
|
1208
1275
|
constructor(data) {
|
|
1209
1276
|
super();
|
|
1210
1277
|
proto3.util.initPartial(data, this);
|
|
1211
1278
|
}
|
|
1212
1279
|
static runtime = proto3;
|
|
1213
|
-
static typeName = "wg.cosmo.node.v1.
|
|
1280
|
+
static typeName = "wg.cosmo.node.v1.EngineEventConfiguration";
|
|
1214
1281
|
static fields = proto3.util.newFieldList(() => [
|
|
1215
|
-
{ no: 1, name: "
|
|
1216
|
-
{ no: 2, name: "
|
|
1217
|
-
{ no: 3, name: "
|
|
1218
|
-
{ no: 4, name: "
|
|
1219
|
-
{ no: 5, name: "source_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1220
|
-
{ no: 6, name: "stream_configuration", kind: "message", T: StreamConfiguration },
|
|
1282
|
+
{ no: 1, name: "provider_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1283
|
+
{ no: 2, name: "type", kind: "enum", T: proto3.getEnumType(EventType) },
|
|
1284
|
+
{ no: 3, name: "type_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1285
|
+
{ no: 4, name: "field_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1221
1286
|
]);
|
|
1222
1287
|
static fromBinary(bytes, options) {
|
|
1223
|
-
return new
|
|
1288
|
+
return new EngineEventConfiguration().fromBinary(bytes, options);
|
|
1224
1289
|
}
|
|
1225
1290
|
static fromJson(jsonValue, options) {
|
|
1226
|
-
return new
|
|
1291
|
+
return new EngineEventConfiguration().fromJson(jsonValue, options);
|
|
1227
1292
|
}
|
|
1228
1293
|
static fromJsonString(jsonString, options) {
|
|
1229
|
-
return new
|
|
1294
|
+
return new EngineEventConfiguration().fromJsonString(jsonString, options);
|
|
1230
1295
|
}
|
|
1231
1296
|
static equals(a, b) {
|
|
1232
|
-
return proto3.util.equals(
|
|
1297
|
+
return proto3.util.equals(EngineEventConfiguration, a, b);
|
|
1233
1298
|
}
|
|
1234
1299
|
}
|
|
1235
1300
|
/**
|
|
1236
|
-
* @generated from message wg.cosmo.node.v1.
|
|
1301
|
+
* @generated from message wg.cosmo.node.v1.DataSourceCustomEvents
|
|
1237
1302
|
*/
|
|
1238
|
-
export class
|
|
1303
|
+
export class DataSourceCustomEvents extends Message {
|
|
1304
|
+
/**
|
|
1305
|
+
* @generated from field: repeated wg.cosmo.node.v1.NatsEventConfiguration nats = 1;
|
|
1306
|
+
*/
|
|
1307
|
+
nats = [];
|
|
1239
1308
|
/**
|
|
1240
|
-
* @generated from field: repeated wg.cosmo.node.v1.
|
|
1309
|
+
* @generated from field: repeated wg.cosmo.node.v1.KafkaEventConfiguration kafka = 2;
|
|
1241
1310
|
*/
|
|
1242
|
-
|
|
1311
|
+
kafka = [];
|
|
1243
1312
|
constructor(data) {
|
|
1244
1313
|
super();
|
|
1245
1314
|
proto3.util.initPartial(data, this);
|
|
1246
1315
|
}
|
|
1247
1316
|
static runtime = proto3;
|
|
1248
|
-
static typeName = "wg.cosmo.node.v1.
|
|
1317
|
+
static typeName = "wg.cosmo.node.v1.DataSourceCustomEvents";
|
|
1249
1318
|
static fields = proto3.util.newFieldList(() => [
|
|
1250
|
-
{ no: 1, name: "
|
|
1319
|
+
{ no: 1, name: "nats", kind: "message", T: NatsEventConfiguration, repeated: true },
|
|
1320
|
+
{ no: 2, name: "kafka", kind: "message", T: KafkaEventConfiguration, repeated: true },
|
|
1251
1321
|
]);
|
|
1252
1322
|
static fromBinary(bytes, options) {
|
|
1253
|
-
return new
|
|
1323
|
+
return new DataSourceCustomEvents().fromBinary(bytes, options);
|
|
1254
1324
|
}
|
|
1255
1325
|
static fromJson(jsonValue, options) {
|
|
1256
|
-
return new
|
|
1326
|
+
return new DataSourceCustomEvents().fromJson(jsonValue, options);
|
|
1257
1327
|
}
|
|
1258
1328
|
static fromJsonString(jsonString, options) {
|
|
1259
|
-
return new
|
|
1329
|
+
return new DataSourceCustomEvents().fromJsonString(jsonString, options);
|
|
1260
1330
|
}
|
|
1261
1331
|
static equals(a, b) {
|
|
1262
|
-
return proto3.util.equals(
|
|
1332
|
+
return proto3.util.equals(DataSourceCustomEvents, a, b);
|
|
1263
1333
|
}
|
|
1264
1334
|
}
|
|
1265
1335
|
/**
|