clarifai-web-grpc 10.9.3 → 10.10.0
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.
- package/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +1024 -224
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +0 -84
- package/dist/cjs/proto/clarifai/api/service_pb.js +64 -595
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +1024 -224
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +0 -84
- package/dist/esm/proto/clarifai/api/service_pb.js +64 -595
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +185 -40
- package/proto/clarifai/api/resources_pb.js +1279 -268
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +0 -24
- package/proto/clarifai/api/service_grpc_web_pb.js +0 -122
- package/proto/clarifai/api/service_pb.d.ts +9 -86
- package/proto/clarifai/api/service_pb.js +82 -732
- package/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/proto/clarifai/api/status/status_code_pb.js +1 -0
|
@@ -7332,90 +7332,6 @@ proto.clarifai.api.V2PromiseClient.prototype.postStatValuesAggregate =
|
|
|
7332
7332
|
return this.client_.unaryCall(this.hostname_ +
|
|
7333
7333
|
'/clarifai.api.V2/PostStatValuesAggregate', request, metadata || {}, methodDescriptor_V2_PostStatValuesAggregate);
|
|
7334
7334
|
};
|
|
7335
|
-
/**
|
|
7336
|
-
* @const
|
|
7337
|
-
* @type {!grpc.web.MethodDescriptor<
|
|
7338
|
-
* !proto.clarifai.api.PostTrendingMetricsViewRequest,
|
|
7339
|
-
* !proto.clarifai.api.status.BaseResponse>}
|
|
7340
|
-
*/
|
|
7341
|
-
const methodDescriptor_V2_PostTrendingMetricsView = new grpc.web.MethodDescriptor('/clarifai.api.V2/PostTrendingMetricsView', grpc.web.MethodType.UNARY, proto.clarifai.api.PostTrendingMetricsViewRequest, proto_clarifai_api_status_status_pb.BaseResponse,
|
|
7342
|
-
/**
|
|
7343
|
-
* @param {!proto.clarifai.api.PostTrendingMetricsViewRequest} request
|
|
7344
|
-
* @return {!Uint8Array}
|
|
7345
|
-
*/
|
|
7346
|
-
function (request) {
|
|
7347
|
-
return request.serializeBinary();
|
|
7348
|
-
}, proto_clarifai_api_status_status_pb.BaseResponse.deserializeBinary);
|
|
7349
|
-
/**
|
|
7350
|
-
* @param {!proto.clarifai.api.PostTrendingMetricsViewRequest} request The
|
|
7351
|
-
* request proto
|
|
7352
|
-
* @param {?Object<string, string>} metadata User defined
|
|
7353
|
-
* call metadata
|
|
7354
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.status.BaseResponse)}
|
|
7355
|
-
* callback The callback function(error, response)
|
|
7356
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.status.BaseResponse>|undefined}
|
|
7357
|
-
* The XHR Node Readable Stream
|
|
7358
|
-
*/
|
|
7359
|
-
proto.clarifai.api.V2Client.prototype.postTrendingMetricsView =
|
|
7360
|
-
function (request, metadata, callback) {
|
|
7361
|
-
return this.client_.rpcCall(this.hostname_ +
|
|
7362
|
-
'/clarifai.api.V2/PostTrendingMetricsView', request, metadata || {}, methodDescriptor_V2_PostTrendingMetricsView, callback);
|
|
7363
|
-
};
|
|
7364
|
-
/**
|
|
7365
|
-
* @param {!proto.clarifai.api.PostTrendingMetricsViewRequest} request The
|
|
7366
|
-
* request proto
|
|
7367
|
-
* @param {?Object<string, string>=} metadata User defined
|
|
7368
|
-
* call metadata
|
|
7369
|
-
* @return {!Promise<!proto.clarifai.api.status.BaseResponse>}
|
|
7370
|
-
* Promise that resolves to the response
|
|
7371
|
-
*/
|
|
7372
|
-
proto.clarifai.api.V2PromiseClient.prototype.postTrendingMetricsView =
|
|
7373
|
-
function (request, metadata) {
|
|
7374
|
-
return this.client_.unaryCall(this.hostname_ +
|
|
7375
|
-
'/clarifai.api.V2/PostTrendingMetricsView', request, metadata || {}, methodDescriptor_V2_PostTrendingMetricsView);
|
|
7376
|
-
};
|
|
7377
|
-
/**
|
|
7378
|
-
* @const
|
|
7379
|
-
* @type {!grpc.web.MethodDescriptor<
|
|
7380
|
-
* !proto.clarifai.api.ListTrendingMetricsViewsRequest,
|
|
7381
|
-
* !proto.clarifai.api.MultiTrendingMetricsViewResponse>}
|
|
7382
|
-
*/
|
|
7383
|
-
const methodDescriptor_V2_ListTrendingMetricsViews = new grpc.web.MethodDescriptor('/clarifai.api.V2/ListTrendingMetricsViews', grpc.web.MethodType.UNARY, proto.clarifai.api.ListTrendingMetricsViewsRequest, proto.clarifai.api.MultiTrendingMetricsViewResponse,
|
|
7384
|
-
/**
|
|
7385
|
-
* @param {!proto.clarifai.api.ListTrendingMetricsViewsRequest} request
|
|
7386
|
-
* @return {!Uint8Array}
|
|
7387
|
-
*/
|
|
7388
|
-
function (request) {
|
|
7389
|
-
return request.serializeBinary();
|
|
7390
|
-
}, proto.clarifai.api.MultiTrendingMetricsViewResponse.deserializeBinary);
|
|
7391
|
-
/**
|
|
7392
|
-
* @param {!proto.clarifai.api.ListTrendingMetricsViewsRequest} request The
|
|
7393
|
-
* request proto
|
|
7394
|
-
* @param {?Object<string, string>} metadata User defined
|
|
7395
|
-
* call metadata
|
|
7396
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiTrendingMetricsViewResponse)}
|
|
7397
|
-
* callback The callback function(error, response)
|
|
7398
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiTrendingMetricsViewResponse>|undefined}
|
|
7399
|
-
* The XHR Node Readable Stream
|
|
7400
|
-
*/
|
|
7401
|
-
proto.clarifai.api.V2Client.prototype.listTrendingMetricsViews =
|
|
7402
|
-
function (request, metadata, callback) {
|
|
7403
|
-
return this.client_.rpcCall(this.hostname_ +
|
|
7404
|
-
'/clarifai.api.V2/ListTrendingMetricsViews', request, metadata || {}, methodDescriptor_V2_ListTrendingMetricsViews, callback);
|
|
7405
|
-
};
|
|
7406
|
-
/**
|
|
7407
|
-
* @param {!proto.clarifai.api.ListTrendingMetricsViewsRequest} request The
|
|
7408
|
-
* request proto
|
|
7409
|
-
* @param {?Object<string, string>=} metadata User defined
|
|
7410
|
-
* call metadata
|
|
7411
|
-
* @return {!Promise<!proto.clarifai.api.MultiTrendingMetricsViewResponse>}
|
|
7412
|
-
* Promise that resolves to the response
|
|
7413
|
-
*/
|
|
7414
|
-
proto.clarifai.api.V2PromiseClient.prototype.listTrendingMetricsViews =
|
|
7415
|
-
function (request, metadata) {
|
|
7416
|
-
return this.client_.unaryCall(this.hostname_ +
|
|
7417
|
-
'/clarifai.api.V2/ListTrendingMetricsViews', request, metadata || {}, methodDescriptor_V2_ListTrendingMetricsViews);
|
|
7418
|
-
};
|
|
7419
7335
|
/**
|
|
7420
7336
|
* @const
|
|
7421
7337
|
* @type {!grpc.web.MethodDescriptor<
|