@514labs/moose-proto 0.6.448 → 0.6.450
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.
|
@@ -1467,6 +1467,12 @@ interface FunctionProcess {
|
|
|
1467
1467
|
* @generated from protobuf field: optional moose.proto.Metadata metadata = 11
|
|
1468
1468
|
*/
|
|
1469
1469
|
metadata?: Metadata;
|
|
1470
|
+
/**
|
|
1471
|
+
* Topic ID for the dead letter queue, used to construct namespace-prefixed topic name
|
|
1472
|
+
*
|
|
1473
|
+
* @generated from protobuf field: optional string dead_letter_queue_topic_id = 12
|
|
1474
|
+
*/
|
|
1475
|
+
deadLetterQueueTopicId?: string;
|
|
1470
1476
|
}
|
|
1471
1477
|
/**
|
|
1472
1478
|
* @generated MessageType for protobuf message moose.proto.FunctionProcess
|
|
@@ -1467,6 +1467,12 @@ interface FunctionProcess {
|
|
|
1467
1467
|
* @generated from protobuf field: optional moose.proto.Metadata metadata = 11
|
|
1468
1468
|
*/
|
|
1469
1469
|
metadata?: Metadata;
|
|
1470
|
+
/**
|
|
1471
|
+
* Topic ID for the dead letter queue, used to construct namespace-prefixed topic name
|
|
1472
|
+
*
|
|
1473
|
+
* @generated from protobuf field: optional string dead_letter_queue_topic_id = 12
|
|
1474
|
+
*/
|
|
1475
|
+
deadLetterQueueTopicId?: string;
|
|
1470
1476
|
}
|
|
1471
1477
|
/**
|
|
1472
1478
|
* @generated MessageType for protobuf message moose.proto.FunctionProcess
|
|
@@ -3326,7 +3326,15 @@ var FunctionProcess$Type = class extends import_runtime16.MessageType {
|
|
|
3326
3326
|
T: 5
|
|
3327
3327
|
/*ScalarType.INT32*/
|
|
3328
3328
|
},
|
|
3329
|
-
{ no: 11, name: "metadata", kind: "message", T: () => Metadata }
|
|
3329
|
+
{ no: 11, name: "metadata", kind: "message", T: () => Metadata },
|
|
3330
|
+
{
|
|
3331
|
+
no: 12,
|
|
3332
|
+
name: "dead_letter_queue_topic_id",
|
|
3333
|
+
kind: "scalar",
|
|
3334
|
+
opt: true,
|
|
3335
|
+
T: 9
|
|
3336
|
+
/*ScalarType.STRING*/
|
|
3337
|
+
}
|
|
3330
3338
|
]);
|
|
3331
3339
|
}
|
|
3332
3340
|
create(value) {
|
|
@@ -3390,6 +3398,10 @@ var FunctionProcess$Type = class extends import_runtime16.MessageType {
|
|
|
3390
3398
|
11:
|
|
3391
3399
|
message.metadata = Metadata.internalBinaryRead(reader, reader.uint32(), options, message.metadata);
|
|
3392
3400
|
break;
|
|
3401
|
+
case /* optional string dead_letter_queue_topic_id */
|
|
3402
|
+
12:
|
|
3403
|
+
message.deadLetterQueueTopicId = reader.string();
|
|
3404
|
+
break;
|
|
3393
3405
|
default:
|
|
3394
3406
|
let u = options.readUnknownField;
|
|
3395
3407
|
if (u === "throw")
|
|
@@ -3441,6 +3453,8 @@ var FunctionProcess$Type = class extends import_runtime16.MessageType {
|
|
|
3441
3453
|
writer.tag(10, import_runtime13.WireType.Varint).int32(message.parallelProcessCount);
|
|
3442
3454
|
if (message.metadata)
|
|
3443
3455
|
Metadata.internalBinaryWrite(message.metadata, writer.tag(11, import_runtime13.WireType.LengthDelimited).fork(), options).join();
|
|
3456
|
+
if (message.deadLetterQueueTopicId !== void 0)
|
|
3457
|
+
writer.tag(12, import_runtime13.WireType.LengthDelimited).string(message.deadLetterQueueTopicId);
|
|
3444
3458
|
let u = options.writeUnknownFields;
|
|
3445
3459
|
if (u !== false)
|
|
3446
3460
|
(u == true ? import_runtime14.UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|