@wundergraph/cosmo-connect
Advanced tools
Comparing version 0.65.0 to 0.66.0
@@ -747,2 +747,23 @@ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; | ||
/** | ||
* @generated from message wg.cosmo.node.v1.StreamConfiguration | ||
*/ | ||
export declare class StreamConfiguration extends Message<StreamConfiguration> { | ||
/** | ||
* @generated from field: string consumer_name = 1; | ||
*/ | ||
consumerName: string; | ||
/** | ||
* @generated from field: string stream_name = 2; | ||
*/ | ||
streamName: string; | ||
constructor(data?: PartialMessage<StreamConfiguration>); | ||
static readonly runtime: typeof proto3; | ||
static readonly typeName = "wg.cosmo.node.v1.StreamConfiguration"; | ||
static readonly fields: FieldList; | ||
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StreamConfiguration; | ||
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StreamConfiguration; | ||
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StreamConfiguration; | ||
static equals(a: StreamConfiguration | PlainMessage<StreamConfiguration> | undefined, b: StreamConfiguration | PlainMessage<StreamConfiguration> | undefined): boolean; | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.EventConfiguration | ||
@@ -764,5 +785,5 @@ */ | ||
/** | ||
* @generated from field: string topic = 4; | ||
* @generated from field: repeated string subjects = 4; | ||
*/ | ||
topic: string; | ||
subjects: string[]; | ||
/** | ||
@@ -772,2 +793,6 @@ * @generated from field: string source_name = 5; | ||
sourceName: string; | ||
/** | ||
* @generated from field: wg.cosmo.node.v1.StreamConfiguration stream_configuration = 6; | ||
*/ | ||
streamConfiguration?: StreamConfiguration; | ||
constructor(data?: PartialMessage<EventConfiguration>); | ||
@@ -774,0 +799,0 @@ static readonly runtime: typeof proto3; |
@@ -1141,2 +1141,37 @@ // @generated by protoc-gen-es v1.4.1 with parameter "target=ts" | ||
/** | ||
* @generated from message wg.cosmo.node.v1.StreamConfiguration | ||
*/ | ||
export class StreamConfiguration extends Message { | ||
/** | ||
* @generated from field: string consumer_name = 1; | ||
*/ | ||
consumerName = ""; | ||
/** | ||
* @generated from field: string stream_name = 2; | ||
*/ | ||
streamName = ""; | ||
constructor(data) { | ||
super(); | ||
proto3.util.initPartial(data, this); | ||
} | ||
static runtime = proto3; | ||
static typeName = "wg.cosmo.node.v1.StreamConfiguration"; | ||
static fields = proto3.util.newFieldList(() => [ | ||
{ no: 1, name: "consumer_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "stream_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
]); | ||
static fromBinary(bytes, options) { | ||
return new StreamConfiguration().fromBinary(bytes, options); | ||
} | ||
static fromJson(jsonValue, options) { | ||
return new StreamConfiguration().fromJson(jsonValue, options); | ||
} | ||
static fromJsonString(jsonString, options) { | ||
return new StreamConfiguration().fromJsonString(jsonString, options); | ||
} | ||
static equals(a, b) { | ||
return proto3.util.equals(StreamConfiguration, a, b); | ||
} | ||
} | ||
/** | ||
* @generated from message wg.cosmo.node.v1.EventConfiguration | ||
@@ -1158,5 +1193,5 @@ */ | ||
/** | ||
* @generated from field: string topic = 4; | ||
* @generated from field: repeated string subjects = 4; | ||
*/ | ||
topic = ""; | ||
subjects = []; | ||
/** | ||
@@ -1166,2 +1201,6 @@ * @generated from field: string source_name = 5; | ||
sourceName = ""; | ||
/** | ||
* @generated from field: wg.cosmo.node.v1.StreamConfiguration stream_configuration = 6; | ||
*/ | ||
streamConfiguration; | ||
constructor(data) { | ||
@@ -1177,4 +1216,5 @@ super(); | ||
{ no: 3, name: "field_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 4, name: "topic", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 4, name: "subjects", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true }, | ||
{ no: 5, name: "source_name", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 6, name: "stream_configuration", kind: "message", T: StreamConfiguration }, | ||
]); | ||
@@ -1181,0 +1221,0 @@ static fromBinary(bytes, options) { |
{ | ||
"name": "@wundergraph/cosmo-connect", | ||
"version": "0.65.0", | ||
"version": "0.66.0", | ||
"description": "TypeScript Connect client for WunderGraph Cosmo", | ||
@@ -43,3 +43,3 @@ "scripts": { | ||
}, | ||
"gitHead": "99a3d8c10f93a2b1f2a897972f43701d4e007db2" | ||
"gitHead": "39f2c66a6264740ff5076f8770100571e4945c66" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1833610
30884