Skip to content

Commit b06d6b3

Browse files
committed
GRPC clients version 10.10.2
1 parent 7a01d0b commit b06d6b3

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Sources/ClarifaiGrpc/proto/clarifai/api/resources.pb.swift

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12663,6 +12663,9 @@ public struct Clarifai_Api_ProcessingInfo {
1266312663
/// Clears the value of `status`. Subsequent reads from it will return its default value.
1266412664
public mutating func clearStatus() {self._status = nil}
1266512665

12666+
/// Internal field to track processing. Runners will not have access to this.
12667+
public var processingID: String = String()
12668+
1266612669
public var unknownFields = SwiftProtobuf.UnknownStorage()
1266712670

1266812671
public init() {}
@@ -28378,6 +28381,7 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
2837828381
public static let _protobuf_nameMap: SwiftProtobuf._NameMap = [
2837928382
1: .standard(proto: "runner_method_type"),
2838028383
2: .same(proto: "status"),
28384+
3: .standard(proto: "processing_id"),
2838128385
]
2838228386

2838328387
public mutating func decodeMessage<D: SwiftProtobuf.Decoder>(decoder: inout D) throws {
@@ -28388,6 +28392,7 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
2838828392
switch fieldNumber {
2838928393
case 1: try { try decoder.decodeSingularEnumField(value: &self.runnerMethodType) }()
2839028394
case 2: try { try decoder.decodeSingularMessageField(value: &self._status) }()
28395+
case 3: try { try decoder.decodeSingularStringField(value: &self.processingID) }()
2839128396
default: break
2839228397
}
2839328398
}
@@ -28404,12 +28409,16 @@ extension Clarifai_Api_ProcessingInfo: SwiftProtobuf.Message, SwiftProtobuf._Mes
2840428409
try { if let v = self._status {
2840528410
try visitor.visitSingularMessageField(value: v, fieldNumber: 2)
2840628411
} }()
28412+
if !self.processingID.isEmpty {
28413+
try visitor.visitSingularStringField(value: self.processingID, fieldNumber: 3)
28414+
}
2840728415
try unknownFields.traverse(visitor: &visitor)
2840828416
}
2840928417

2841028418
public static func ==(lhs: Clarifai_Api_ProcessingInfo, rhs: Clarifai_Api_ProcessingInfo) -> Bool {
2841128419
if lhs.runnerMethodType != rhs.runnerMethodType {return false}
2841228420
if lhs._status != rhs._status {return false}
28421+
if lhs.processingID != rhs.processingID {return false}
2841328422
if lhs.unknownFields != rhs.unknownFields {return false}
2841428423
return true
2841528424
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.10.1
1+
10.10.2

0 commit comments

Comments
 (0)