@@ -12663,6 +12663,9 @@ public struct Clarifai_Api_ProcessingInfo {
12663
12663
/// Clears the value of `status`. Subsequent reads from it will return its default value.
12664
12664
public mutating func clearStatus() {self._status = nil}
12665
12665
12666
+ /// Internal field to track processing. Runners will not have access to this.
12667
+ public var processingID: String = String()
12668
+
12666
12669
public var unknownFields = SwiftProtobuf.UnknownStorage()
12667
12670
12668
12671
public init() {}
@@ -28378,6 +28381,7 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
28378
28381
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
28379
28382
1: .standard(proto: "runner_method_type"),
28380
28383
2: .same(proto: "status"),
28384
+ 3: .standard(proto: "processing_id"),
28381
28385
]
28382
28386
28383
28387
public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
@@ -28388,6 +28392,7 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
28388
28392
switch fieldNumber {
28389
28393
case 1: try { try decoder.decodeSingularEnumField(value: &self.runnerMethodType) }()
28390
28394
case 2: try { try decoder.decodeSingularMessageField(value: &self._status) }()
28395
+ case 3: try { try decoder.decodeSingularStringField(value: &self.processingID) }()
28391
28396
default: break
28392
28397
}
28393
28398
}
@@ -28404,12 +28409,16 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
28404
28409
try { if let v = self._status {
28405
28410
try visitor.visitSingularMessageField(value: v, fieldNumber: 2)
28406
28411
} }()
28412
+ if !self.processingID.isEmpty {
28413
+ try visitor.visitSingularStringField(value: self.processingID, fieldNumber: 3)
28414
+ }
28407
28415
try unknownFields.traverse(visitor: &visitor)
28408
28416
}
28409
28417
28410
28418
public static func ==(lhs: Clarifai_Api_ProcessingInfo, rhs: Clarifai_Api_ProcessingInfo) -> Bool {
28411
28419
if lhs.runnerMethodType != rhs.runnerMethodType {return false}
28412
28420
if lhs._status != rhs._status {return false}
28421
+ if lhs.processingID != rhs.processingID {return false}
28413
28422
if lhs.unknownFields != rhs.unknownFields {return false}
28414
28423
return true
28415
28424
}
0 commit comments