clarifai-web-grpc 10.1.6 → 10.2.1
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 +725 -88
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +132 -6
- package/dist/cjs/proto/clarifai/api/service_pb.js +2035 -2
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +8 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +725 -88
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +132 -6
- package/dist/esm/proto/clarifai/api/service_pb.js +2035 -2
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +8 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +109 -15
- package/proto/clarifai/api/resources_pb.js +899 -109
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +39 -3
- package/proto/clarifai/api/service_grpc_web_pb.js +189 -6
- package/proto/clarifai/api/service_pb.d.ts +313 -0
- package/proto/clarifai/api/service_pb.js +2914 -416
- package/proto/clarifai/api/status/status_code_pb.d.ts +8 -0
- package/proto/clarifai/api/status/status_code_pb.js +8 -0
|
@@ -590,6 +590,20 @@ export class V2Client {
|
|
|
590
590
|
response: proto_clarifai_api_status_status_pb.BaseResponse) => void
|
|
591
591
|
): grpcWeb.ClientReadableStream<proto_clarifai_api_status_status_pb.BaseResponse>;
|
|
592
592
|
|
|
593
|
+
putModelVersionExports(
|
|
594
|
+
request: proto_clarifai_api_service_pb.PutModelVersionExportsRequest,
|
|
595
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
596
|
+
callback: (err: grpcWeb.RpcError,
|
|
597
|
+
response: proto_clarifai_api_service_pb.SingleModelVersionExportResponse) => void
|
|
598
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
599
|
+
|
|
600
|
+
getModelVersionExport(
|
|
601
|
+
request: proto_clarifai_api_service_pb.GetModelVersionExportRequest,
|
|
602
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
603
|
+
callback: (err: grpcWeb.RpcError,
|
|
604
|
+
response: proto_clarifai_api_service_pb.SingleModelVersionExportResponse) => void
|
|
605
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
606
|
+
|
|
593
607
|
getModelVersionMetrics(
|
|
594
608
|
request: proto_clarifai_api_service_pb.GetModelVersionMetricsRequest,
|
|
595
609
|
metadata: grpcWeb.Metadata | undefined,
|
|
@@ -1017,6 +1031,13 @@ export class V2Client {
|
|
|
1017
1031
|
response: proto_clarifai_api_service_pb.SingleStatusCodeResponse) => void
|
|
1018
1032
|
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.SingleStatusCodeResponse>;
|
|
1019
1033
|
|
|
1034
|
+
getResourcePrice(
|
|
1035
|
+
request: proto_clarifai_api_service_pb.GetResourcePriceRequest,
|
|
1036
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
1037
|
+
callback: (err: grpcWeb.RpcError,
|
|
1038
|
+
response: proto_clarifai_api_service_pb.GetResourcePriceResponse) => void
|
|
1039
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.GetResourcePriceResponse>;
|
|
1040
|
+
|
|
1020
1041
|
listCollaborators(
|
|
1021
1042
|
request: proto_clarifai_api_service_pb.ListCollaboratorsRequest,
|
|
1022
1043
|
metadata: grpcWeb.Metadata | undefined,
|
|
@@ -1378,8 +1399,8 @@ export class V2Client {
|
|
|
1378
1399
|
request: proto_clarifai_api_service_pb.PutTaskAssignmentsRequest,
|
|
1379
1400
|
metadata: grpcWeb.Metadata | undefined,
|
|
1380
1401
|
callback: (err: grpcWeb.RpcError,
|
|
1381
|
-
response:
|
|
1382
|
-
): grpcWeb.ClientReadableStream<
|
|
1402
|
+
response: proto_clarifai_api_service_pb.MultiTaskAssignmentResponse) => void
|
|
1403
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiTaskAssignmentResponse>;
|
|
1383
1404
|
|
|
1384
1405
|
listInputsAddJobs(
|
|
1385
1406
|
request: proto_clarifai_api_service_pb.ListInputsAddJobsRequest,
|
|
@@ -1943,6 +1964,16 @@ export class V2PromiseClient {
|
|
|
1943
1964
|
metadata?: grpcWeb.Metadata
|
|
1944
1965
|
): Promise<proto_clarifai_api_status_status_pb.BaseResponse>;
|
|
1945
1966
|
|
|
1967
|
+
putModelVersionExports(
|
|
1968
|
+
request: proto_clarifai_api_service_pb.PutModelVersionExportsRequest,
|
|
1969
|
+
metadata?: grpcWeb.Metadata
|
|
1970
|
+
): Promise<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
1971
|
+
|
|
1972
|
+
getModelVersionExport(
|
|
1973
|
+
request: proto_clarifai_api_service_pb.GetModelVersionExportRequest,
|
|
1974
|
+
metadata?: grpcWeb.Metadata
|
|
1975
|
+
): Promise<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
1976
|
+
|
|
1946
1977
|
getModelVersionMetrics(
|
|
1947
1978
|
request: proto_clarifai_api_service_pb.GetModelVersionMetricsRequest,
|
|
1948
1979
|
metadata?: grpcWeb.Metadata
|
|
@@ -2248,6 +2279,11 @@ export class V2PromiseClient {
|
|
|
2248
2279
|
metadata?: grpcWeb.Metadata
|
|
2249
2280
|
): Promise<proto_clarifai_api_service_pb.SingleStatusCodeResponse>;
|
|
2250
2281
|
|
|
2282
|
+
getResourcePrice(
|
|
2283
|
+
request: proto_clarifai_api_service_pb.GetResourcePriceRequest,
|
|
2284
|
+
metadata?: grpcWeb.Metadata
|
|
2285
|
+
): Promise<proto_clarifai_api_service_pb.GetResourcePriceResponse>;
|
|
2286
|
+
|
|
2251
2287
|
listCollaborators(
|
|
2252
2288
|
request: proto_clarifai_api_service_pb.ListCollaboratorsRequest,
|
|
2253
2289
|
metadata?: grpcWeb.Metadata
|
|
@@ -2506,7 +2542,7 @@ export class V2PromiseClient {
|
|
|
2506
2542
|
putTaskAssignments(
|
|
2507
2543
|
request: proto_clarifai_api_service_pb.PutTaskAssignmentsRequest,
|
|
2508
2544
|
metadata?: grpcWeb.Metadata
|
|
2509
|
-
): Promise<
|
|
2545
|
+
): Promise<proto_clarifai_api_service_pb.MultiTaskAssignmentResponse>;
|
|
2510
2546
|
|
|
2511
2547
|
listInputsAddJobs(
|
|
2512
2548
|
request: proto_clarifai_api_service_pb.ListInputsAddJobsRequest,
|
|
@@ -5158,6 +5158,128 @@ proto.clarifai.api.V2PromiseClient.prototype.deleteModelVersion =
|
|
|
5158
5158
|
};
|
|
5159
5159
|
|
|
5160
5160
|
|
|
5161
|
+
/**
|
|
5162
|
+
* @const
|
|
5163
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
5164
|
+
* !proto.clarifai.api.PutModelVersionExportsRequest,
|
|
5165
|
+
* !proto.clarifai.api.SingleModelVersionExportResponse>}
|
|
5166
|
+
*/
|
|
5167
|
+
const methodDescriptor_V2_PutModelVersionExports = new grpc.web.MethodDescriptor(
|
|
5168
|
+
'/clarifai.api.V2/PutModelVersionExports',
|
|
5169
|
+
grpc.web.MethodType.UNARY,
|
|
5170
|
+
proto.clarifai.api.PutModelVersionExportsRequest,
|
|
5171
|
+
proto.clarifai.api.SingleModelVersionExportResponse,
|
|
5172
|
+
/**
|
|
5173
|
+
* @param {!proto.clarifai.api.PutModelVersionExportsRequest} request
|
|
5174
|
+
* @return {!Uint8Array}
|
|
5175
|
+
*/
|
|
5176
|
+
function(request) {
|
|
5177
|
+
return request.serializeBinary();
|
|
5178
|
+
},
|
|
5179
|
+
proto.clarifai.api.SingleModelVersionExportResponse.deserializeBinary
|
|
5180
|
+
);
|
|
5181
|
+
|
|
5182
|
+
|
|
5183
|
+
/**
|
|
5184
|
+
* @param {!proto.clarifai.api.PutModelVersionExportsRequest} request The
|
|
5185
|
+
* request proto
|
|
5186
|
+
* @param {?Object<string, string>} metadata User defined
|
|
5187
|
+
* call metadata
|
|
5188
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SingleModelVersionExportResponse)}
|
|
5189
|
+
* callback The callback function(error, response)
|
|
5190
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleModelVersionExportResponse>|undefined}
|
|
5191
|
+
* The XHR Node Readable Stream
|
|
5192
|
+
*/
|
|
5193
|
+
proto.clarifai.api.V2Client.prototype.putModelVersionExports =
|
|
5194
|
+
function(request, metadata, callback) {
|
|
5195
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
5196
|
+
'/clarifai.api.V2/PutModelVersionExports',
|
|
5197
|
+
request,
|
|
5198
|
+
metadata || {},
|
|
5199
|
+
methodDescriptor_V2_PutModelVersionExports,
|
|
5200
|
+
callback);
|
|
5201
|
+
};
|
|
5202
|
+
|
|
5203
|
+
|
|
5204
|
+
/**
|
|
5205
|
+
* @param {!proto.clarifai.api.PutModelVersionExportsRequest} request The
|
|
5206
|
+
* request proto
|
|
5207
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
5208
|
+
* call metadata
|
|
5209
|
+
* @return {!Promise<!proto.clarifai.api.SingleModelVersionExportResponse>}
|
|
5210
|
+
* Promise that resolves to the response
|
|
5211
|
+
*/
|
|
5212
|
+
proto.clarifai.api.V2PromiseClient.prototype.putModelVersionExports =
|
|
5213
|
+
function(request, metadata) {
|
|
5214
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
5215
|
+
'/clarifai.api.V2/PutModelVersionExports',
|
|
5216
|
+
request,
|
|
5217
|
+
metadata || {},
|
|
5218
|
+
methodDescriptor_V2_PutModelVersionExports);
|
|
5219
|
+
};
|
|
5220
|
+
|
|
5221
|
+
|
|
5222
|
+
/**
|
|
5223
|
+
* @const
|
|
5224
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
5225
|
+
* !proto.clarifai.api.GetModelVersionExportRequest,
|
|
5226
|
+
* !proto.clarifai.api.SingleModelVersionExportResponse>}
|
|
5227
|
+
*/
|
|
5228
|
+
const methodDescriptor_V2_GetModelVersionExport = new grpc.web.MethodDescriptor(
|
|
5229
|
+
'/clarifai.api.V2/GetModelVersionExport',
|
|
5230
|
+
grpc.web.MethodType.UNARY,
|
|
5231
|
+
proto.clarifai.api.GetModelVersionExportRequest,
|
|
5232
|
+
proto.clarifai.api.SingleModelVersionExportResponse,
|
|
5233
|
+
/**
|
|
5234
|
+
* @param {!proto.clarifai.api.GetModelVersionExportRequest} request
|
|
5235
|
+
* @return {!Uint8Array}
|
|
5236
|
+
*/
|
|
5237
|
+
function(request) {
|
|
5238
|
+
return request.serializeBinary();
|
|
5239
|
+
},
|
|
5240
|
+
proto.clarifai.api.SingleModelVersionExportResponse.deserializeBinary
|
|
5241
|
+
);
|
|
5242
|
+
|
|
5243
|
+
|
|
5244
|
+
/**
|
|
5245
|
+
* @param {!proto.clarifai.api.GetModelVersionExportRequest} request The
|
|
5246
|
+
* request proto
|
|
5247
|
+
* @param {?Object<string, string>} metadata User defined
|
|
5248
|
+
* call metadata
|
|
5249
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SingleModelVersionExportResponse)}
|
|
5250
|
+
* callback The callback function(error, response)
|
|
5251
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleModelVersionExportResponse>|undefined}
|
|
5252
|
+
* The XHR Node Readable Stream
|
|
5253
|
+
*/
|
|
5254
|
+
proto.clarifai.api.V2Client.prototype.getModelVersionExport =
|
|
5255
|
+
function(request, metadata, callback) {
|
|
5256
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
5257
|
+
'/clarifai.api.V2/GetModelVersionExport',
|
|
5258
|
+
request,
|
|
5259
|
+
metadata || {},
|
|
5260
|
+
methodDescriptor_V2_GetModelVersionExport,
|
|
5261
|
+
callback);
|
|
5262
|
+
};
|
|
5263
|
+
|
|
5264
|
+
|
|
5265
|
+
/**
|
|
5266
|
+
* @param {!proto.clarifai.api.GetModelVersionExportRequest} request The
|
|
5267
|
+
* request proto
|
|
5268
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
5269
|
+
* call metadata
|
|
5270
|
+
* @return {!Promise<!proto.clarifai.api.SingleModelVersionExportResponse>}
|
|
5271
|
+
* Promise that resolves to the response
|
|
5272
|
+
*/
|
|
5273
|
+
proto.clarifai.api.V2PromiseClient.prototype.getModelVersionExport =
|
|
5274
|
+
function(request, metadata) {
|
|
5275
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
5276
|
+
'/clarifai.api.V2/GetModelVersionExport',
|
|
5277
|
+
request,
|
|
5278
|
+
metadata || {},
|
|
5279
|
+
methodDescriptor_V2_GetModelVersionExport);
|
|
5280
|
+
};
|
|
5281
|
+
|
|
5282
|
+
|
|
5161
5283
|
/**
|
|
5162
5284
|
* @const
|
|
5163
5285
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -8879,6 +9001,67 @@ proto.clarifai.api.V2PromiseClient.prototype.getStatusCode =
|
|
|
8879
9001
|
};
|
|
8880
9002
|
|
|
8881
9003
|
|
|
9004
|
+
/**
|
|
9005
|
+
* @const
|
|
9006
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
9007
|
+
* !proto.clarifai.api.GetResourcePriceRequest,
|
|
9008
|
+
* !proto.clarifai.api.GetResourcePriceResponse>}
|
|
9009
|
+
*/
|
|
9010
|
+
const methodDescriptor_V2_GetResourcePrice = new grpc.web.MethodDescriptor(
|
|
9011
|
+
'/clarifai.api.V2/GetResourcePrice',
|
|
9012
|
+
grpc.web.MethodType.UNARY,
|
|
9013
|
+
proto.clarifai.api.GetResourcePriceRequest,
|
|
9014
|
+
proto.clarifai.api.GetResourcePriceResponse,
|
|
9015
|
+
/**
|
|
9016
|
+
* @param {!proto.clarifai.api.GetResourcePriceRequest} request
|
|
9017
|
+
* @return {!Uint8Array}
|
|
9018
|
+
*/
|
|
9019
|
+
function(request) {
|
|
9020
|
+
return request.serializeBinary();
|
|
9021
|
+
},
|
|
9022
|
+
proto.clarifai.api.GetResourcePriceResponse.deserializeBinary
|
|
9023
|
+
);
|
|
9024
|
+
|
|
9025
|
+
|
|
9026
|
+
/**
|
|
9027
|
+
* @param {!proto.clarifai.api.GetResourcePriceRequest} request The
|
|
9028
|
+
* request proto
|
|
9029
|
+
* @param {?Object<string, string>} metadata User defined
|
|
9030
|
+
* call metadata
|
|
9031
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.GetResourcePriceResponse)}
|
|
9032
|
+
* callback The callback function(error, response)
|
|
9033
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.GetResourcePriceResponse>|undefined}
|
|
9034
|
+
* The XHR Node Readable Stream
|
|
9035
|
+
*/
|
|
9036
|
+
proto.clarifai.api.V2Client.prototype.getResourcePrice =
|
|
9037
|
+
function(request, metadata, callback) {
|
|
9038
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
9039
|
+
'/clarifai.api.V2/GetResourcePrice',
|
|
9040
|
+
request,
|
|
9041
|
+
metadata || {},
|
|
9042
|
+
methodDescriptor_V2_GetResourcePrice,
|
|
9043
|
+
callback);
|
|
9044
|
+
};
|
|
9045
|
+
|
|
9046
|
+
|
|
9047
|
+
/**
|
|
9048
|
+
* @param {!proto.clarifai.api.GetResourcePriceRequest} request The
|
|
9049
|
+
* request proto
|
|
9050
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
9051
|
+
* call metadata
|
|
9052
|
+
* @return {!Promise<!proto.clarifai.api.GetResourcePriceResponse>}
|
|
9053
|
+
* Promise that resolves to the response
|
|
9054
|
+
*/
|
|
9055
|
+
proto.clarifai.api.V2PromiseClient.prototype.getResourcePrice =
|
|
9056
|
+
function(request, metadata) {
|
|
9057
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
9058
|
+
'/clarifai.api.V2/GetResourcePrice',
|
|
9059
|
+
request,
|
|
9060
|
+
metadata || {},
|
|
9061
|
+
methodDescriptor_V2_GetResourcePrice);
|
|
9062
|
+
};
|
|
9063
|
+
|
|
9064
|
+
|
|
8882
9065
|
/**
|
|
8883
9066
|
* @const
|
|
8884
9067
|
* @type {!grpc.web.MethodDescriptor<
|
|
@@ -11994,13 +12177,13 @@ proto.clarifai.api.V2PromiseClient.prototype.listNextTaskAssignments =
|
|
|
11994
12177
|
* @const
|
|
11995
12178
|
* @type {!grpc.web.MethodDescriptor<
|
|
11996
12179
|
* !proto.clarifai.api.PutTaskAssignmentsRequest,
|
|
11997
|
-
* !proto.clarifai.api.
|
|
12180
|
+
* !proto.clarifai.api.MultiTaskAssignmentResponse>}
|
|
11998
12181
|
*/
|
|
11999
12182
|
const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
12000
12183
|
'/clarifai.api.V2/PutTaskAssignments',
|
|
12001
12184
|
grpc.web.MethodType.UNARY,
|
|
12002
12185
|
proto.clarifai.api.PutTaskAssignmentsRequest,
|
|
12003
|
-
|
|
12186
|
+
proto.clarifai.api.MultiTaskAssignmentResponse,
|
|
12004
12187
|
/**
|
|
12005
12188
|
* @param {!proto.clarifai.api.PutTaskAssignmentsRequest} request
|
|
12006
12189
|
* @return {!Uint8Array}
|
|
@@ -12008,7 +12191,7 @@ const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
|
12008
12191
|
function(request) {
|
|
12009
12192
|
return request.serializeBinary();
|
|
12010
12193
|
},
|
|
12011
|
-
|
|
12194
|
+
proto.clarifai.api.MultiTaskAssignmentResponse.deserializeBinary
|
|
12012
12195
|
);
|
|
12013
12196
|
|
|
12014
12197
|
|
|
@@ -12017,9 +12200,9 @@ const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
|
12017
12200
|
* request proto
|
|
12018
12201
|
* @param {?Object<string, string>} metadata User defined
|
|
12019
12202
|
* call metadata
|
|
12020
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
12203
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiTaskAssignmentResponse)}
|
|
12021
12204
|
* callback The callback function(error, response)
|
|
12022
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
12205
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiTaskAssignmentResponse>|undefined}
|
|
12023
12206
|
* The XHR Node Readable Stream
|
|
12024
12207
|
*/
|
|
12025
12208
|
proto.clarifai.api.V2Client.prototype.putTaskAssignments =
|
|
@@ -12038,7 +12221,7 @@ proto.clarifai.api.V2Client.prototype.putTaskAssignments =
|
|
|
12038
12221
|
* request proto
|
|
12039
12222
|
* @param {?Object<string, string>=} metadata User defined
|
|
12040
12223
|
* call metadata
|
|
12041
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
12224
|
+
* @return {!Promise<!proto.clarifai.api.MultiTaskAssignmentResponse>}
|
|
12042
12225
|
* Promise that resolves to the response
|
|
12043
12226
|
*/
|
|
12044
12227
|
proto.clarifai.api.V2PromiseClient.prototype.putTaskAssignments =
|
|
@@ -1010,6 +1010,70 @@ export namespace MultiCollaborationsResponse {
|
|
|
1010
1010
|
}
|
|
1011
1011
|
}
|
|
1012
1012
|
|
|
1013
|
+
export class GetResourcePriceRequest extends jspb.Message {
|
|
1014
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
1015
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetResourcePriceRequest;
|
|
1016
|
+
hasUserAppId(): boolean;
|
|
1017
|
+
clearUserAppId(): GetResourcePriceRequest;
|
|
1018
|
+
|
|
1019
|
+
getModel(): proto_clarifai_api_resources_pb.Model | undefined;
|
|
1020
|
+
setModel(value?: proto_clarifai_api_resources_pb.Model): GetResourcePriceRequest;
|
|
1021
|
+
hasModel(): boolean;
|
|
1022
|
+
clearModel(): GetResourcePriceRequest;
|
|
1023
|
+
|
|
1024
|
+
getWorkflow(): proto_clarifai_api_resources_pb.Workflow | undefined;
|
|
1025
|
+
setWorkflow(value?: proto_clarifai_api_resources_pb.Workflow): GetResourcePriceRequest;
|
|
1026
|
+
hasWorkflow(): boolean;
|
|
1027
|
+
clearWorkflow(): GetResourcePriceRequest;
|
|
1028
|
+
|
|
1029
|
+
getResourceCase(): GetResourcePriceRequest.ResourceCase;
|
|
1030
|
+
|
|
1031
|
+
serializeBinary(): Uint8Array;
|
|
1032
|
+
toObject(includeInstance?: boolean): GetResourcePriceRequest.AsObject;
|
|
1033
|
+
static toObject(includeInstance: boolean, msg: GetResourcePriceRequest): GetResourcePriceRequest.AsObject;
|
|
1034
|
+
static serializeBinaryToWriter(message: GetResourcePriceRequest, writer: jspb.BinaryWriter): void;
|
|
1035
|
+
static deserializeBinary(bytes: Uint8Array): GetResourcePriceRequest;
|
|
1036
|
+
static deserializeBinaryFromReader(message: GetResourcePriceRequest, reader: jspb.BinaryReader): GetResourcePriceRequest;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
export namespace GetResourcePriceRequest {
|
|
1040
|
+
export type AsObject = {
|
|
1041
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
1042
|
+
model?: proto_clarifai_api_resources_pb.Model.AsObject,
|
|
1043
|
+
workflow?: proto_clarifai_api_resources_pb.Workflow.AsObject,
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
export enum ResourceCase {
|
|
1047
|
+
RESOURCE_NOT_SET = 0,
|
|
1048
|
+
MODEL = 2,
|
|
1049
|
+
WORKFLOW = 3,
|
|
1050
|
+
}
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
export class GetResourcePriceResponse extends jspb.Message {
|
|
1054
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
1055
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): GetResourcePriceResponse;
|
|
1056
|
+
hasStatus(): boolean;
|
|
1057
|
+
clearStatus(): GetResourcePriceResponse;
|
|
1058
|
+
|
|
1059
|
+
getPrice(): number;
|
|
1060
|
+
setPrice(value: number): GetResourcePriceResponse;
|
|
1061
|
+
|
|
1062
|
+
serializeBinary(): Uint8Array;
|
|
1063
|
+
toObject(includeInstance?: boolean): GetResourcePriceResponse.AsObject;
|
|
1064
|
+
static toObject(includeInstance: boolean, msg: GetResourcePriceResponse): GetResourcePriceResponse.AsObject;
|
|
1065
|
+
static serializeBinaryToWriter(message: GetResourcePriceResponse, writer: jspb.BinaryWriter): void;
|
|
1066
|
+
static deserializeBinary(bytes: Uint8Array): GetResourcePriceResponse;
|
|
1067
|
+
static deserializeBinaryFromReader(message: GetResourcePriceResponse, reader: jspb.BinaryReader): GetResourcePriceResponse;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
export namespace GetResourcePriceResponse {
|
|
1071
|
+
export type AsObject = {
|
|
1072
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
1073
|
+
price: number,
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1013
1077
|
export class GetStatusCodeRequest extends jspb.Message {
|
|
1014
1078
|
getStatusCodeId(): string;
|
|
1015
1079
|
setStatusCodeId(value: string): GetStatusCodeRequest;
|
|
@@ -4321,6 +4385,184 @@ export namespace PostModelVersionsRequest {
|
|
|
4321
4385
|
}
|
|
4322
4386
|
}
|
|
4323
4387
|
|
|
4388
|
+
export class PostModelVersionsUploadRequest extends jspb.Message {
|
|
4389
|
+
getUploadConfig(): PostModelVersionsUploadConfig | undefined;
|
|
4390
|
+
setUploadConfig(value?: PostModelVersionsUploadConfig): PostModelVersionsUploadRequest;
|
|
4391
|
+
hasUploadConfig(): boolean;
|
|
4392
|
+
clearUploadConfig(): PostModelVersionsUploadRequest;
|
|
4393
|
+
|
|
4394
|
+
getContentPart(): proto_clarifai_api_resources_pb.UploadContentPart | undefined;
|
|
4395
|
+
setContentPart(value?: proto_clarifai_api_resources_pb.UploadContentPart): PostModelVersionsUploadRequest;
|
|
4396
|
+
hasContentPart(): boolean;
|
|
4397
|
+
clearContentPart(): PostModelVersionsUploadRequest;
|
|
4398
|
+
|
|
4399
|
+
getUploadDataCase(): PostModelVersionsUploadRequest.UploadDataCase;
|
|
4400
|
+
|
|
4401
|
+
serializeBinary(): Uint8Array;
|
|
4402
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadRequest.AsObject;
|
|
4403
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadRequest): PostModelVersionsUploadRequest.AsObject;
|
|
4404
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadRequest, writer: jspb.BinaryWriter): void;
|
|
4405
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadRequest;
|
|
4406
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadRequest, reader: jspb.BinaryReader): PostModelVersionsUploadRequest;
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4409
|
+
export namespace PostModelVersionsUploadRequest {
|
|
4410
|
+
export type AsObject = {
|
|
4411
|
+
uploadConfig?: PostModelVersionsUploadConfig.AsObject,
|
|
4412
|
+
contentPart?: proto_clarifai_api_resources_pb.UploadContentPart.AsObject,
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
export enum UploadDataCase {
|
|
4416
|
+
UPLOAD_DATA_NOT_SET = 0,
|
|
4417
|
+
UPLOAD_CONFIG = 1,
|
|
4418
|
+
CONTENT_PART = 2,
|
|
4419
|
+
}
|
|
4420
|
+
}
|
|
4421
|
+
|
|
4422
|
+
export class PostModelVersionsUploadResponse extends jspb.Message {
|
|
4423
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4424
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): PostModelVersionsUploadResponse;
|
|
4425
|
+
hasStatus(): boolean;
|
|
4426
|
+
clearStatus(): PostModelVersionsUploadResponse;
|
|
4427
|
+
|
|
4428
|
+
getBytesRemaining(): number;
|
|
4429
|
+
setBytesRemaining(value: number): PostModelVersionsUploadResponse;
|
|
4430
|
+
|
|
4431
|
+
getModelVersionId(): string;
|
|
4432
|
+
setModelVersionId(value: string): PostModelVersionsUploadResponse;
|
|
4433
|
+
|
|
4434
|
+
serializeBinary(): Uint8Array;
|
|
4435
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadResponse.AsObject;
|
|
4436
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadResponse): PostModelVersionsUploadResponse.AsObject;
|
|
4437
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadResponse, writer: jspb.BinaryWriter): void;
|
|
4438
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadResponse;
|
|
4439
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadResponse, reader: jspb.BinaryReader): PostModelVersionsUploadResponse;
|
|
4440
|
+
}
|
|
4441
|
+
|
|
4442
|
+
export namespace PostModelVersionsUploadResponse {
|
|
4443
|
+
export type AsObject = {
|
|
4444
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4445
|
+
bytesRemaining: number,
|
|
4446
|
+
modelVersionId: string,
|
|
4447
|
+
}
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4450
|
+
export class PostModelVersionsUploadConfig extends jspb.Message {
|
|
4451
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4452
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostModelVersionsUploadConfig;
|
|
4453
|
+
hasUserAppId(): boolean;
|
|
4454
|
+
clearUserAppId(): PostModelVersionsUploadConfig;
|
|
4455
|
+
|
|
4456
|
+
getModelId(): string;
|
|
4457
|
+
setModelId(value: string): PostModelVersionsUploadConfig;
|
|
4458
|
+
|
|
4459
|
+
getModelVersion(): proto_clarifai_api_resources_pb.ModelVersion | undefined;
|
|
4460
|
+
setModelVersion(value?: proto_clarifai_api_resources_pb.ModelVersion): PostModelVersionsUploadConfig;
|
|
4461
|
+
hasModelVersion(): boolean;
|
|
4462
|
+
clearModelVersion(): PostModelVersionsUploadConfig;
|
|
4463
|
+
|
|
4464
|
+
getTotalSize(): number;
|
|
4465
|
+
setTotalSize(value: number): PostModelVersionsUploadConfig;
|
|
4466
|
+
|
|
4467
|
+
serializeBinary(): Uint8Array;
|
|
4468
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadConfig.AsObject;
|
|
4469
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadConfig): PostModelVersionsUploadConfig.AsObject;
|
|
4470
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadConfig, writer: jspb.BinaryWriter): void;
|
|
4471
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadConfig;
|
|
4472
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadConfig, reader: jspb.BinaryReader): PostModelVersionsUploadConfig;
|
|
4473
|
+
}
|
|
4474
|
+
|
|
4475
|
+
export namespace PostModelVersionsUploadConfig {
|
|
4476
|
+
export type AsObject = {
|
|
4477
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4478
|
+
modelId: string,
|
|
4479
|
+
modelVersion?: proto_clarifai_api_resources_pb.ModelVersion.AsObject,
|
|
4480
|
+
totalSize: number,
|
|
4481
|
+
}
|
|
4482
|
+
}
|
|
4483
|
+
|
|
4484
|
+
export class PutModelVersionExportsRequest extends jspb.Message {
|
|
4485
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4486
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PutModelVersionExportsRequest;
|
|
4487
|
+
hasUserAppId(): boolean;
|
|
4488
|
+
clearUserAppId(): PutModelVersionExportsRequest;
|
|
4489
|
+
|
|
4490
|
+
getModelId(): string;
|
|
4491
|
+
setModelId(value: string): PutModelVersionExportsRequest;
|
|
4492
|
+
|
|
4493
|
+
getVersionId(): string;
|
|
4494
|
+
setVersionId(value: string): PutModelVersionExportsRequest;
|
|
4495
|
+
|
|
4496
|
+
serializeBinary(): Uint8Array;
|
|
4497
|
+
toObject(includeInstance?: boolean): PutModelVersionExportsRequest.AsObject;
|
|
4498
|
+
static toObject(includeInstance: boolean, msg: PutModelVersionExportsRequest): PutModelVersionExportsRequest.AsObject;
|
|
4499
|
+
static serializeBinaryToWriter(message: PutModelVersionExportsRequest, writer: jspb.BinaryWriter): void;
|
|
4500
|
+
static deserializeBinary(bytes: Uint8Array): PutModelVersionExportsRequest;
|
|
4501
|
+
static deserializeBinaryFromReader(message: PutModelVersionExportsRequest, reader: jspb.BinaryReader): PutModelVersionExportsRequest;
|
|
4502
|
+
}
|
|
4503
|
+
|
|
4504
|
+
export namespace PutModelVersionExportsRequest {
|
|
4505
|
+
export type AsObject = {
|
|
4506
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4507
|
+
modelId: string,
|
|
4508
|
+
versionId: string,
|
|
4509
|
+
}
|
|
4510
|
+
}
|
|
4511
|
+
|
|
4512
|
+
export class GetModelVersionExportRequest extends jspb.Message {
|
|
4513
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4514
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetModelVersionExportRequest;
|
|
4515
|
+
hasUserAppId(): boolean;
|
|
4516
|
+
clearUserAppId(): GetModelVersionExportRequest;
|
|
4517
|
+
|
|
4518
|
+
getModelId(): string;
|
|
4519
|
+
setModelId(value: string): GetModelVersionExportRequest;
|
|
4520
|
+
|
|
4521
|
+
getVersionId(): string;
|
|
4522
|
+
setVersionId(value: string): GetModelVersionExportRequest;
|
|
4523
|
+
|
|
4524
|
+
serializeBinary(): Uint8Array;
|
|
4525
|
+
toObject(includeInstance?: boolean): GetModelVersionExportRequest.AsObject;
|
|
4526
|
+
static toObject(includeInstance: boolean, msg: GetModelVersionExportRequest): GetModelVersionExportRequest.AsObject;
|
|
4527
|
+
static serializeBinaryToWriter(message: GetModelVersionExportRequest, writer: jspb.BinaryWriter): void;
|
|
4528
|
+
static deserializeBinary(bytes: Uint8Array): GetModelVersionExportRequest;
|
|
4529
|
+
static deserializeBinaryFromReader(message: GetModelVersionExportRequest, reader: jspb.BinaryReader): GetModelVersionExportRequest;
|
|
4530
|
+
}
|
|
4531
|
+
|
|
4532
|
+
export namespace GetModelVersionExportRequest {
|
|
4533
|
+
export type AsObject = {
|
|
4534
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4535
|
+
modelId: string,
|
|
4536
|
+
versionId: string,
|
|
4537
|
+
}
|
|
4538
|
+
}
|
|
4539
|
+
|
|
4540
|
+
export class SingleModelVersionExportResponse extends jspb.Message {
|
|
4541
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4542
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleModelVersionExportResponse;
|
|
4543
|
+
hasStatus(): boolean;
|
|
4544
|
+
clearStatus(): SingleModelVersionExportResponse;
|
|
4545
|
+
|
|
4546
|
+
getExport(): proto_clarifai_api_resources_pb.ModelVersionExport | undefined;
|
|
4547
|
+
setExport(value?: proto_clarifai_api_resources_pb.ModelVersionExport): SingleModelVersionExportResponse;
|
|
4548
|
+
hasExport(): boolean;
|
|
4549
|
+
clearExport(): SingleModelVersionExportResponse;
|
|
4550
|
+
|
|
4551
|
+
serializeBinary(): Uint8Array;
|
|
4552
|
+
toObject(includeInstance?: boolean): SingleModelVersionExportResponse.AsObject;
|
|
4553
|
+
static toObject(includeInstance: boolean, msg: SingleModelVersionExportResponse): SingleModelVersionExportResponse.AsObject;
|
|
4554
|
+
static serializeBinaryToWriter(message: SingleModelVersionExportResponse, writer: jspb.BinaryWriter): void;
|
|
4555
|
+
static deserializeBinary(bytes: Uint8Array): SingleModelVersionExportResponse;
|
|
4556
|
+
static deserializeBinaryFromReader(message: SingleModelVersionExportResponse, reader: jspb.BinaryReader): SingleModelVersionExportResponse;
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4559
|
+
export namespace SingleModelVersionExportResponse {
|
|
4560
|
+
export type AsObject = {
|
|
4561
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4562
|
+
pb_export?: proto_clarifai_api_resources_pb.ModelVersionExport.AsObject,
|
|
4563
|
+
}
|
|
4564
|
+
}
|
|
4565
|
+
|
|
4324
4566
|
export class PostWorkflowVersionsUnPublishRequest extends jspb.Message {
|
|
4325
4567
|
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4326
4568
|
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostWorkflowVersionsUnPublishRequest;
|
|
@@ -8857,6 +9099,16 @@ export class PutTaskAssignmentsRequest extends jspb.Message {
|
|
|
8857
9099
|
getInputId(): string;
|
|
8858
9100
|
setInputId(value: string): PutTaskAssignmentsRequest;
|
|
8859
9101
|
|
|
9102
|
+
getAction(): PutTaskAssignmentsRequestAction;
|
|
9103
|
+
setAction(value: PutTaskAssignmentsRequestAction): PutTaskAssignmentsRequest;
|
|
9104
|
+
|
|
9105
|
+
getLabelSubmitConfig(): LabelSubmitConfig | undefined;
|
|
9106
|
+
setLabelSubmitConfig(value?: LabelSubmitConfig): PutTaskAssignmentsRequest;
|
|
9107
|
+
hasLabelSubmitConfig(): boolean;
|
|
9108
|
+
clearLabelSubmitConfig(): PutTaskAssignmentsRequest;
|
|
9109
|
+
|
|
9110
|
+
getActionConfigCase(): PutTaskAssignmentsRequest.ActionConfigCase;
|
|
9111
|
+
|
|
8860
9112
|
serializeBinary(): Uint8Array;
|
|
8861
9113
|
toObject(includeInstance?: boolean): PutTaskAssignmentsRequest.AsObject;
|
|
8862
9114
|
static toObject(includeInstance: boolean, msg: PutTaskAssignmentsRequest): PutTaskAssignmentsRequest.AsObject;
|
|
@@ -8870,6 +9122,59 @@ export namespace PutTaskAssignmentsRequest {
|
|
|
8870
9122
|
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
8871
9123
|
taskId: string,
|
|
8872
9124
|
inputId: string,
|
|
9125
|
+
action: PutTaskAssignmentsRequestAction,
|
|
9126
|
+
labelSubmitConfig?: LabelSubmitConfig.AsObject,
|
|
9127
|
+
}
|
|
9128
|
+
|
|
9129
|
+
export enum ActionConfigCase {
|
|
9130
|
+
ACTION_CONFIG_NOT_SET = 0,
|
|
9131
|
+
LABEL_SUBMIT_CONFIG = 6,
|
|
9132
|
+
}
|
|
9133
|
+
}
|
|
9134
|
+
|
|
9135
|
+
export class LabelSubmitConfig extends jspb.Message {
|
|
9136
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9137
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): LabelSubmitConfig;
|
|
9138
|
+
clearTaskAssignmentsList(): LabelSubmitConfig;
|
|
9139
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9140
|
+
|
|
9141
|
+
serializeBinary(): Uint8Array;
|
|
9142
|
+
toObject(includeInstance?: boolean): LabelSubmitConfig.AsObject;
|
|
9143
|
+
static toObject(includeInstance: boolean, msg: LabelSubmitConfig): LabelSubmitConfig.AsObject;
|
|
9144
|
+
static serializeBinaryToWriter(message: LabelSubmitConfig, writer: jspb.BinaryWriter): void;
|
|
9145
|
+
static deserializeBinary(bytes: Uint8Array): LabelSubmitConfig;
|
|
9146
|
+
static deserializeBinaryFromReader(message: LabelSubmitConfig, reader: jspb.BinaryReader): LabelSubmitConfig;
|
|
9147
|
+
}
|
|
9148
|
+
|
|
9149
|
+
export namespace LabelSubmitConfig {
|
|
9150
|
+
export type AsObject = {
|
|
9151
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
9152
|
+
}
|
|
9153
|
+
}
|
|
9154
|
+
|
|
9155
|
+
export class MultiTaskAssignmentResponse extends jspb.Message {
|
|
9156
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9157
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiTaskAssignmentResponse;
|
|
9158
|
+
hasStatus(): boolean;
|
|
9159
|
+
clearStatus(): MultiTaskAssignmentResponse;
|
|
9160
|
+
|
|
9161
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9162
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): MultiTaskAssignmentResponse;
|
|
9163
|
+
clearTaskAssignmentsList(): MultiTaskAssignmentResponse;
|
|
9164
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9165
|
+
|
|
9166
|
+
serializeBinary(): Uint8Array;
|
|
9167
|
+
toObject(includeInstance?: boolean): MultiTaskAssignmentResponse.AsObject;
|
|
9168
|
+
static toObject(includeInstance: boolean, msg: MultiTaskAssignmentResponse): MultiTaskAssignmentResponse.AsObject;
|
|
9169
|
+
static serializeBinaryToWriter(message: MultiTaskAssignmentResponse, writer: jspb.BinaryWriter): void;
|
|
9170
|
+
static deserializeBinary(bytes: Uint8Array): MultiTaskAssignmentResponse;
|
|
9171
|
+
static deserializeBinaryFromReader(message: MultiTaskAssignmentResponse, reader: jspb.BinaryReader): MultiTaskAssignmentResponse;
|
|
9172
|
+
}
|
|
9173
|
+
|
|
9174
|
+
export namespace MultiTaskAssignmentResponse {
|
|
9175
|
+
export type AsObject = {
|
|
9176
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9177
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
8873
9178
|
}
|
|
8874
9179
|
}
|
|
8875
9180
|
|
|
@@ -9759,3 +10064,11 @@ export enum OrganizationInvitationStatus {
|
|
|
9759
10064
|
DECLINED = 4,
|
|
9760
10065
|
EXPIRED = 5,
|
|
9761
10066
|
}
|
|
10067
|
+
export enum PutTaskAssignmentsRequestAction {
|
|
10068
|
+
PUT_TASK_ASSIGNMENTS_REQUEST_ACTION_NOT_SET = 0,
|
|
10069
|
+
LABEL_START = 1,
|
|
10070
|
+
LABEL_SUBMIT = 2,
|
|
10071
|
+
REVIEW_START = 10,
|
|
10072
|
+
REVIEW_APPROVE = 11,
|
|
10073
|
+
REVIEW_REQUEST_CHANGES = 12,
|
|
10074
|
+
}
|