Skip to content

Commit

Permalink
GRPC clients version 11.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clarifai-prod committed Feb 6, 2025
1 parent 916d1e4 commit ed94896
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.0.5
11.1.0
32 changes: 31 additions & 1 deletion google/api/client_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -4000,7 +4000,8 @@ proto.google.api.SelectiveGapicGeneration.prototype.toObject = function(opt_incl
*/
proto.google.api.SelectiveGapicGeneration.toObject = function(includeInstance, msg) {
var f, obj = {
methodsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f
methodsList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
generateOmittedAsInternal: jspb.Message.getBooleanFieldWithDefault(msg, 2, false)
};

if (includeInstance) {
Expand Down Expand Up @@ -4041,6 +4042,10 @@ proto.google.api.SelectiveGapicGeneration.deserializeBinaryFromReader = function
var value = /** @type {string} */ (reader.readString());
msg.addMethods(value);
break;
case 2:
var value = /** @type {boolean} */ (reader.readBool());
msg.setGenerateOmittedAsInternal(value);
break;
default:
reader.skipField();
break;
Expand Down Expand Up @@ -4077,6 +4082,13 @@ proto.google.api.SelectiveGapicGeneration.serializeBinaryToWriter = function(mes
f
);
}
f = message.getGenerateOmittedAsInternal();
if (f) {
writer.writeBool(
2,
f
);
}
};


Expand Down Expand Up @@ -4117,6 +4129,24 @@ proto.google.api.SelectiveGapicGeneration.prototype.clearMethodsList = function(
};


/**
* optional bool generate_omitted_as_internal = 2;
* @return {boolean}
*/
proto.google.api.SelectiveGapicGeneration.prototype.getGenerateOmittedAsInternal = function() {
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 2, false));
};


/**
* @param {boolean} value
* @return {!proto.google.api.SelectiveGapicGeneration} returns this
*/
proto.google.api.SelectiveGapicGeneration.prototype.setGenerateOmittedAsInternal = function(value) {
return jspb.Message.setProto3BooleanField(this, 2, value);
};


/**
* @enum {number}
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarifai-nodejs-grpc",
"version": "11.0.5",
"version": "11.1.0",
"description": "The official Clarifai Node.js gRPC client",
"main": "src/index.js",
"repository": "https://github.com/Clarifai/clarifai-javascript-grpc",
Expand Down

0 comments on commit ed94896

Please sign in to comment.