clarifai-web-grpc 11.10.10 → 12.0.2
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 +784 -11
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +93 -13
- package/dist/cjs/proto/clarifai/api/service_pb.js +1517 -67
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +3 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +2 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +784 -11
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +93 -13
- package/dist/esm/proto/clarifai/api/service_pb.js +1517 -67
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +3 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +2 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +120 -0
- package/proto/clarifai/api/resources_pb.js +1000 -11
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +28 -6
- package/proto/clarifai/api/service_grpc_web_pb.js +135 -18
- package/proto/clarifai/api/service_pb.d.ts +234 -20
- package/proto/clarifai/api/service_pb.js +1872 -67
- package/proto/clarifai/api/status/status_code_pb.d.ts +3 -0
- package/proto/clarifai/api/status/status_code_pb.js +3 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +1 -0
- package/proto/clarifai/auth/scope/scope_pb.js +2 -1
|
@@ -871,40 +871,78 @@ proto.clarifai.api.V2PromiseClient.prototype.postTrackAnnotationsSearches =
|
|
|
871
871
|
/**
|
|
872
872
|
* @const
|
|
873
873
|
* @type {!grpc.web.MethodDescriptor<
|
|
874
|
-
* !proto.clarifai.api.
|
|
875
|
-
* !proto.clarifai.api.
|
|
874
|
+
* !proto.clarifai.api.StreamAnnotationsRequest,
|
|
875
|
+
* !proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
876
876
|
*/
|
|
877
|
-
const
|
|
877
|
+
const methodDescriptor_V2_StreamAnnotations = new grpc.web.MethodDescriptor('/clarifai.api.V2/StreamAnnotations', grpc.web.MethodType.SERVER_STREAMING, proto.clarifai.api.StreamAnnotationsRequest, proto.clarifai.api.SingleStreamAnnotationResponse,
|
|
878
878
|
/**
|
|
879
|
-
* @param {!proto.clarifai.api.
|
|
879
|
+
* @param {!proto.clarifai.api.StreamAnnotationsRequest} request
|
|
880
880
|
* @return {!Uint8Array}
|
|
881
881
|
*/
|
|
882
882
|
function (request) {
|
|
883
883
|
return request.serializeBinary();
|
|
884
|
-
}, proto.clarifai.api.
|
|
884
|
+
}, proto.clarifai.api.SingleStreamAnnotationResponse.deserializeBinary);
|
|
885
|
+
/**
|
|
886
|
+
* @param {!proto.clarifai.api.StreamAnnotationsRequest} request The request proto
|
|
887
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
888
|
+
* call metadata
|
|
889
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
890
|
+
* The XHR Node Readable Stream
|
|
891
|
+
*/
|
|
892
|
+
proto.clarifai.api.V2Client.prototype.streamAnnotations =
|
|
893
|
+
function (request, metadata) {
|
|
894
|
+
return this.client_.serverStreaming(this.hostname_ +
|
|
895
|
+
'/clarifai.api.V2/StreamAnnotations', request, metadata || {}, methodDescriptor_V2_StreamAnnotations);
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* @param {!proto.clarifai.api.StreamAnnotationsRequest} request The request proto
|
|
899
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
900
|
+
* call metadata
|
|
901
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
902
|
+
* The XHR Node Readable Stream
|
|
903
|
+
*/
|
|
904
|
+
proto.clarifai.api.V2PromiseClient.prototype.streamAnnotations =
|
|
905
|
+
function (request, metadata) {
|
|
906
|
+
return this.client_.serverStreaming(this.hostname_ +
|
|
907
|
+
'/clarifai.api.V2/StreamAnnotations', request, metadata || {}, methodDescriptor_V2_StreamAnnotations);
|
|
908
|
+
};
|
|
909
|
+
/**
|
|
910
|
+
* @const
|
|
911
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
912
|
+
* !proto.clarifai.api.StreamLivestreamAnnotationsRequest,
|
|
913
|
+
* !proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
914
|
+
*/
|
|
915
|
+
const methodDescriptor_V2_StreamLivestreamAnnotations = new grpc.web.MethodDescriptor('/clarifai.api.V2/StreamLivestreamAnnotations', grpc.web.MethodType.SERVER_STREAMING, proto.clarifai.api.StreamLivestreamAnnotationsRequest, proto.clarifai.api.SingleStreamAnnotationResponse,
|
|
885
916
|
/**
|
|
886
|
-
* @param {!proto.clarifai.api.
|
|
917
|
+
* @param {!proto.clarifai.api.StreamLivestreamAnnotationsRequest} request
|
|
918
|
+
* @return {!Uint8Array}
|
|
919
|
+
*/
|
|
920
|
+
function (request) {
|
|
921
|
+
return request.serializeBinary();
|
|
922
|
+
}, proto.clarifai.api.SingleStreamAnnotationResponse.deserializeBinary);
|
|
923
|
+
/**
|
|
924
|
+
* @param {!proto.clarifai.api.StreamLivestreamAnnotationsRequest} request The request proto
|
|
887
925
|
* @param {?Object<string, string>=} metadata User defined
|
|
888
926
|
* call metadata
|
|
889
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
927
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
890
928
|
* The XHR Node Readable Stream
|
|
891
929
|
*/
|
|
892
|
-
proto.clarifai.api.V2Client.prototype.
|
|
930
|
+
proto.clarifai.api.V2Client.prototype.streamLivestreamAnnotations =
|
|
893
931
|
function (request, metadata) {
|
|
894
932
|
return this.client_.serverStreaming(this.hostname_ +
|
|
895
|
-
'/clarifai.api.V2/
|
|
933
|
+
'/clarifai.api.V2/StreamLivestreamAnnotations', request, metadata || {}, methodDescriptor_V2_StreamLivestreamAnnotations);
|
|
896
934
|
};
|
|
897
935
|
/**
|
|
898
|
-
* @param {!proto.clarifai.api.
|
|
936
|
+
* @param {!proto.clarifai.api.StreamLivestreamAnnotationsRequest} request The request proto
|
|
899
937
|
* @param {?Object<string, string>=} metadata User defined
|
|
900
938
|
* call metadata
|
|
901
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
939
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleStreamAnnotationResponse>}
|
|
902
940
|
* The XHR Node Readable Stream
|
|
903
941
|
*/
|
|
904
|
-
proto.clarifai.api.V2PromiseClient.prototype.
|
|
942
|
+
proto.clarifai.api.V2PromiseClient.prototype.streamLivestreamAnnotations =
|
|
905
943
|
function (request, metadata) {
|
|
906
944
|
return this.client_.serverStreaming(this.hostname_ +
|
|
907
|
-
'/clarifai.api.V2/
|
|
945
|
+
'/clarifai.api.V2/StreamLivestreamAnnotations', request, metadata || {}, methodDescriptor_V2_StreamLivestreamAnnotations);
|
|
908
946
|
};
|
|
909
947
|
/**
|
|
910
948
|
* @const
|
|
@@ -11104,6 +11142,48 @@ proto.clarifai.api.V2PromiseClient.prototype.patchPipelineVersionRuns =
|
|
|
11104
11142
|
return this.client_.unaryCall(this.hostname_ +
|
|
11105
11143
|
'/clarifai.api.V2/PatchPipelineVersionRuns', request, metadata || {}, methodDescriptor_V2_PatchPipelineVersionRuns);
|
|
11106
11144
|
};
|
|
11145
|
+
/**
|
|
11146
|
+
* @const
|
|
11147
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
11148
|
+
* !proto.clarifai.api.ListPipelineVersionRunStatusLogsRequest,
|
|
11149
|
+
* !proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse>}
|
|
11150
|
+
*/
|
|
11151
|
+
const methodDescriptor_V2_ListPipelineVersionRunStatusLogs = new grpc.web.MethodDescriptor('/clarifai.api.V2/ListPipelineVersionRunStatusLogs', grpc.web.MethodType.UNARY, proto.clarifai.api.ListPipelineVersionRunStatusLogsRequest, proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse,
|
|
11152
|
+
/**
|
|
11153
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunStatusLogsRequest} request
|
|
11154
|
+
* @return {!Uint8Array}
|
|
11155
|
+
*/
|
|
11156
|
+
function (request) {
|
|
11157
|
+
return request.serializeBinary();
|
|
11158
|
+
}, proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse.deserializeBinary);
|
|
11159
|
+
/**
|
|
11160
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunStatusLogsRequest} request The
|
|
11161
|
+
* request proto
|
|
11162
|
+
* @param {?Object<string, string>} metadata User defined
|
|
11163
|
+
* call metadata
|
|
11164
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse)}
|
|
11165
|
+
* callback The callback function(error, response)
|
|
11166
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse>|undefined}
|
|
11167
|
+
* The XHR Node Readable Stream
|
|
11168
|
+
*/
|
|
11169
|
+
proto.clarifai.api.V2Client.prototype.listPipelineVersionRunStatusLogs =
|
|
11170
|
+
function (request, metadata, callback) {
|
|
11171
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
11172
|
+
'/clarifai.api.V2/ListPipelineVersionRunStatusLogs', request, metadata || {}, methodDescriptor_V2_ListPipelineVersionRunStatusLogs, callback);
|
|
11173
|
+
};
|
|
11174
|
+
/**
|
|
11175
|
+
* @param {!proto.clarifai.api.ListPipelineVersionRunStatusLogsRequest} request The
|
|
11176
|
+
* request proto
|
|
11177
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
11178
|
+
* call metadata
|
|
11179
|
+
* @return {!Promise<!proto.clarifai.api.MultiPipelineVersionRunStatusLogResponse>}
|
|
11180
|
+
* Promise that resolves to the response
|
|
11181
|
+
*/
|
|
11182
|
+
proto.clarifai.api.V2PromiseClient.prototype.listPipelineVersionRunStatusLogs =
|
|
11183
|
+
function (request, metadata) {
|
|
11184
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
11185
|
+
'/clarifai.api.V2/ListPipelineVersionRunStatusLogs', request, metadata || {}, methodDescriptor_V2_ListPipelineVersionRunStatusLogs);
|
|
11186
|
+
};
|
|
11107
11187
|
/**
|
|
11108
11188
|
* @const
|
|
11109
11189
|
* @type {!grpc.web.MethodDescriptor<
|