Skip to content

Commit

Permalink
Merge pull request #34 from Clarifai/Version_9.1.0
Browse files Browse the repository at this point in the history
Version 9.1.0
  • Loading branch information
sergei-clarifai authored Feb 1, 2023
2 parents 4eaf6ab + 24f2f3e commit 3c50514
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 21 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.1.0
4 changes: 2 additions & 2 deletions package.json-E
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarifai-web-grpc",
"version": "9.0.0",
"version": "9.0.0rc1",
"description": "The official Clarifai gRPC-web client",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand All @@ -20,7 +20,7 @@
"prepare": "husky install"
},
"dependencies": {
"google-protobuf": "3.19.4",
"google-protobuf": "3.21.2",
"grpc-web": "1.3.1"
},
"devDependencies": {
Expand Down
17 changes: 9 additions & 8 deletions proto/clarifai/api/resources_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = (function() {
if (this) { return this; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
if (typeof self !== 'undefined') { return self; }
return Function('return this')();
}.call(null));
var global =
(typeof globalThis !== 'undefined' && globalThis) ||
(typeof window !== 'undefined' && window) ||
(typeof global !== 'undefined' && global) ||
(typeof self !== 'undefined' && self) ||
(function () { return this; }).call(null) ||
Function('return this')();

var proto_clarifai_api_status_status_pb = require('../../../proto/clarifai/api/status/status_pb.js');
goog.object.extend(proto, proto_clarifai_api_status_status_pb);
Expand Down Expand Up @@ -18120,7 +18120,8 @@ proto.clarifai.api.DatasetVersion.prototype.getMetricsMap = function(opt_noLazyC
*/
proto.clarifai.api.DatasetVersion.prototype.clearMetricsMap = function() {
this.getMetricsMap().clear();
return this;};
return this;
};


/**
Expand Down
10 changes: 7 additions & 3 deletions proto/clarifai/api/service_grpc_web_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
* @public
*/

// GENERATED CODE -- DO NOT EDIT!
// Code generated by protoc-gen-grpc-web. DO NOT EDIT.
// versions:
// protoc-gen-grpc-web v1.4.2
// protoc v3.21.6
// source: proto/clarifai/api/service.proto


/* eslint-disable */
Expand Down Expand Up @@ -60,7 +64,7 @@ proto.clarifai.api.V2Client =
/**
* @private @const {string} The hostname
*/
this.hostname_ = hostname;
this.hostname_ = hostname.replace(/\/+$/, '');

};

Expand All @@ -86,7 +90,7 @@ proto.clarifai.api.V2PromiseClient =
/**
* @private @const {string} The hostname
*/
this.hostname_ = hostname;
this.hostname_ = hostname.replace(/\/+$/, '');

};

Expand Down
14 changes: 7 additions & 7 deletions proto/clarifai/api/service_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@

var jspb = require('google-protobuf');
var goog = jspb;
var global = (function() {
if (this) { return this; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
if (typeof self !== 'undefined') { return self; }
return Function('return this')();
}.call(null));
var global =
(typeof globalThis !== 'undefined' && globalThis) ||
(typeof window !== 'undefined' && window) ||
(typeof global !== 'undefined' && global) ||
(typeof self !== 'undefined' && self) ||
(function () { return this; }).call(null) ||
Function('return this')();

var proto_clarifai_api_resources_pb = require('../../../proto/clarifai/api/resources_pb.js');
goog.object.extend(proto, proto_clarifai_api_resources_pb);
Expand Down

0 comments on commit 3c50514

Please sign in to comment.