clarifai-web-grpc 10.1.6 → 10.3.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/README.md +13 -11
- package/VERSION +1 -1
- package/dist/cjs/index.d.ts +2 -1
- package/dist/cjs/index.js +8 -2
- package/dist/cjs/proto/clarifai/api/resources_pb.js +2827 -92
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +90 -6
- package/dist/cjs/proto/clarifai/api/service_pb.js +10404 -8056
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +10 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +2 -0
- package/dist/cjs/resources.d.ts +1 -0
- package/dist/cjs/resources.js +3 -0
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +6 -2
- package/dist/esm/proto/clarifai/api/resources_pb.js +2827 -92
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +90 -6
- package/dist/esm/proto/clarifai/api/service_pb.js +10404 -8056
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +10 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +2 -0
- package/dist/esm/resources.d.ts +1 -0
- package/dist/esm/resources.js +1 -0
- package/examples/post-app.ts +27 -0
- package/examples/post-input.ts +42 -0
- package/index.ts +7 -2
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +456 -15
- package/proto/clarifai/api/resources_pb.js +3689 -274
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +27 -3
- package/proto/clarifai/api/service_grpc_web_pb.js +128 -6
- package/proto/clarifai/api/service_pb.d.ts +355 -0
- package/proto/clarifai/api/service_pb.js +15757 -12851
- package/proto/clarifai/api/status/status_code_pb.d.ts +10 -0
- package/proto/clarifai/api/status/status_code_pb.js +10 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +2 -0
- package/proto/clarifai/auth/scope/scope_pb.js +2 -0
- package/resources.ts +1 -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,
|
|
@@ -1378,8 +1392,8 @@ export class V2Client {
|
|
|
1378
1392
|
request: proto_clarifai_api_service_pb.PutTaskAssignmentsRequest,
|
|
1379
1393
|
metadata: grpcWeb.Metadata | undefined,
|
|
1380
1394
|
callback: (err: grpcWeb.RpcError,
|
|
1381
|
-
response:
|
|
1382
|
-
): grpcWeb.ClientReadableStream<
|
|
1395
|
+
response: proto_clarifai_api_service_pb.MultiTaskAssignmentResponse) => void
|
|
1396
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiTaskAssignmentResponse>;
|
|
1383
1397
|
|
|
1384
1398
|
listInputsAddJobs(
|
|
1385
1399
|
request: proto_clarifai_api_service_pb.ListInputsAddJobsRequest,
|
|
@@ -1943,6 +1957,16 @@ export class V2PromiseClient {
|
|
|
1943
1957
|
metadata?: grpcWeb.Metadata
|
|
1944
1958
|
): Promise<proto_clarifai_api_status_status_pb.BaseResponse>;
|
|
1945
1959
|
|
|
1960
|
+
putModelVersionExports(
|
|
1961
|
+
request: proto_clarifai_api_service_pb.PutModelVersionExportsRequest,
|
|
1962
|
+
metadata?: grpcWeb.Metadata
|
|
1963
|
+
): Promise<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
1964
|
+
|
|
1965
|
+
getModelVersionExport(
|
|
1966
|
+
request: proto_clarifai_api_service_pb.GetModelVersionExportRequest,
|
|
1967
|
+
metadata?: grpcWeb.Metadata
|
|
1968
|
+
): Promise<proto_clarifai_api_service_pb.SingleModelVersionExportResponse>;
|
|
1969
|
+
|
|
1946
1970
|
getModelVersionMetrics(
|
|
1947
1971
|
request: proto_clarifai_api_service_pb.GetModelVersionMetricsRequest,
|
|
1948
1972
|
metadata?: grpcWeb.Metadata
|
|
@@ -2506,7 +2530,7 @@ export class V2PromiseClient {
|
|
|
2506
2530
|
putTaskAssignments(
|
|
2507
2531
|
request: proto_clarifai_api_service_pb.PutTaskAssignmentsRequest,
|
|
2508
2532
|
metadata?: grpcWeb.Metadata
|
|
2509
|
-
): Promise<
|
|
2533
|
+
): Promise<proto_clarifai_api_service_pb.MultiTaskAssignmentResponse>;
|
|
2510
2534
|
|
|
2511
2535
|
listInputsAddJobs(
|
|
2512
2536
|
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<
|
|
@@ -11994,13 +12116,13 @@ proto.clarifai.api.V2PromiseClient.prototype.listNextTaskAssignments =
|
|
|
11994
12116
|
* @const
|
|
11995
12117
|
* @type {!grpc.web.MethodDescriptor<
|
|
11996
12118
|
* !proto.clarifai.api.PutTaskAssignmentsRequest,
|
|
11997
|
-
* !proto.clarifai.api.
|
|
12119
|
+
* !proto.clarifai.api.MultiTaskAssignmentResponse>}
|
|
11998
12120
|
*/
|
|
11999
12121
|
const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
12000
12122
|
'/clarifai.api.V2/PutTaskAssignments',
|
|
12001
12123
|
grpc.web.MethodType.UNARY,
|
|
12002
12124
|
proto.clarifai.api.PutTaskAssignmentsRequest,
|
|
12003
|
-
|
|
12125
|
+
proto.clarifai.api.MultiTaskAssignmentResponse,
|
|
12004
12126
|
/**
|
|
12005
12127
|
* @param {!proto.clarifai.api.PutTaskAssignmentsRequest} request
|
|
12006
12128
|
* @return {!Uint8Array}
|
|
@@ -12008,7 +12130,7 @@ const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
|
12008
12130
|
function(request) {
|
|
12009
12131
|
return request.serializeBinary();
|
|
12010
12132
|
},
|
|
12011
|
-
|
|
12133
|
+
proto.clarifai.api.MultiTaskAssignmentResponse.deserializeBinary
|
|
12012
12134
|
);
|
|
12013
12135
|
|
|
12014
12136
|
|
|
@@ -12017,9 +12139,9 @@ const methodDescriptor_V2_PutTaskAssignments = new grpc.web.MethodDescriptor(
|
|
|
12017
12139
|
* request proto
|
|
12018
12140
|
* @param {?Object<string, string>} metadata User defined
|
|
12019
12141
|
* call metadata
|
|
12020
|
-
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.
|
|
12142
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiTaskAssignmentResponse)}
|
|
12021
12143
|
* callback The callback function(error, response)
|
|
12022
|
-
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.
|
|
12144
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiTaskAssignmentResponse>|undefined}
|
|
12023
12145
|
* The XHR Node Readable Stream
|
|
12024
12146
|
*/
|
|
12025
12147
|
proto.clarifai.api.V2Client.prototype.putTaskAssignments =
|
|
@@ -12038,7 +12160,7 @@ proto.clarifai.api.V2Client.prototype.putTaskAssignments =
|
|
|
12038
12160
|
* request proto
|
|
12039
12161
|
* @param {?Object<string, string>=} metadata User defined
|
|
12040
12162
|
* call metadata
|
|
12041
|
-
* @return {!Promise<!proto.clarifai.api.
|
|
12163
|
+
* @return {!Promise<!proto.clarifai.api.MultiTaskAssignmentResponse>}
|
|
12042
12164
|
* Promise that resolves to the response
|
|
12043
12165
|
*/
|
|
12044
12166
|
proto.clarifai.api.V2PromiseClient.prototype.putTaskAssignments =
|
|
@@ -3048,6 +3048,11 @@ export class PostModelOutputsRequest extends jspb.Message {
|
|
|
3048
3048
|
hasModel(): boolean;
|
|
3049
3049
|
clearModel(): PostModelOutputsRequest;
|
|
3050
3050
|
|
|
3051
|
+
getRunnerSelector(): proto_clarifai_api_resources_pb.RunnerSelector | undefined;
|
|
3052
|
+
setRunnerSelector(value?: proto_clarifai_api_resources_pb.RunnerSelector): PostModelOutputsRequest;
|
|
3053
|
+
hasRunnerSelector(): boolean;
|
|
3054
|
+
clearRunnerSelector(): PostModelOutputsRequest;
|
|
3055
|
+
|
|
3051
3056
|
serializeBinary(): Uint8Array;
|
|
3052
3057
|
toObject(includeInstance?: boolean): PostModelOutputsRequest.AsObject;
|
|
3053
3058
|
static toObject(includeInstance: boolean, msg: PostModelOutputsRequest): PostModelOutputsRequest.AsObject;
|
|
@@ -3063,6 +3068,7 @@ export namespace PostModelOutputsRequest {
|
|
|
3063
3068
|
versionId: string,
|
|
3064
3069
|
inputsList: Array<proto_clarifai_api_resources_pb.Input.AsObject>,
|
|
3065
3070
|
model?: proto_clarifai_api_resources_pb.Model.AsObject,
|
|
3071
|
+
runnerSelector?: proto_clarifai_api_resources_pb.RunnerSelector.AsObject,
|
|
3066
3072
|
}
|
|
3067
3073
|
}
|
|
3068
3074
|
|
|
@@ -4321,6 +4327,184 @@ export namespace PostModelVersionsRequest {
|
|
|
4321
4327
|
}
|
|
4322
4328
|
}
|
|
4323
4329
|
|
|
4330
|
+
export class PostModelVersionsUploadRequest extends jspb.Message {
|
|
4331
|
+
getUploadConfig(): PostModelVersionsUploadConfig | undefined;
|
|
4332
|
+
setUploadConfig(value?: PostModelVersionsUploadConfig): PostModelVersionsUploadRequest;
|
|
4333
|
+
hasUploadConfig(): boolean;
|
|
4334
|
+
clearUploadConfig(): PostModelVersionsUploadRequest;
|
|
4335
|
+
|
|
4336
|
+
getContentPart(): proto_clarifai_api_resources_pb.UploadContentPart | undefined;
|
|
4337
|
+
setContentPart(value?: proto_clarifai_api_resources_pb.UploadContentPart): PostModelVersionsUploadRequest;
|
|
4338
|
+
hasContentPart(): boolean;
|
|
4339
|
+
clearContentPart(): PostModelVersionsUploadRequest;
|
|
4340
|
+
|
|
4341
|
+
getUploadDataCase(): PostModelVersionsUploadRequest.UploadDataCase;
|
|
4342
|
+
|
|
4343
|
+
serializeBinary(): Uint8Array;
|
|
4344
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadRequest.AsObject;
|
|
4345
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadRequest): PostModelVersionsUploadRequest.AsObject;
|
|
4346
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadRequest, writer: jspb.BinaryWriter): void;
|
|
4347
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadRequest;
|
|
4348
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadRequest, reader: jspb.BinaryReader): PostModelVersionsUploadRequest;
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
export namespace PostModelVersionsUploadRequest {
|
|
4352
|
+
export type AsObject = {
|
|
4353
|
+
uploadConfig?: PostModelVersionsUploadConfig.AsObject,
|
|
4354
|
+
contentPart?: proto_clarifai_api_resources_pb.UploadContentPart.AsObject,
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4357
|
+
export enum UploadDataCase {
|
|
4358
|
+
UPLOAD_DATA_NOT_SET = 0,
|
|
4359
|
+
UPLOAD_CONFIG = 1,
|
|
4360
|
+
CONTENT_PART = 2,
|
|
4361
|
+
}
|
|
4362
|
+
}
|
|
4363
|
+
|
|
4364
|
+
export class PostModelVersionsUploadResponse extends jspb.Message {
|
|
4365
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4366
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): PostModelVersionsUploadResponse;
|
|
4367
|
+
hasStatus(): boolean;
|
|
4368
|
+
clearStatus(): PostModelVersionsUploadResponse;
|
|
4369
|
+
|
|
4370
|
+
getBytesRemaining(): number;
|
|
4371
|
+
setBytesRemaining(value: number): PostModelVersionsUploadResponse;
|
|
4372
|
+
|
|
4373
|
+
getModelVersionId(): string;
|
|
4374
|
+
setModelVersionId(value: string): PostModelVersionsUploadResponse;
|
|
4375
|
+
|
|
4376
|
+
serializeBinary(): Uint8Array;
|
|
4377
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadResponse.AsObject;
|
|
4378
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadResponse): PostModelVersionsUploadResponse.AsObject;
|
|
4379
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadResponse, writer: jspb.BinaryWriter): void;
|
|
4380
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadResponse;
|
|
4381
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadResponse, reader: jspb.BinaryReader): PostModelVersionsUploadResponse;
|
|
4382
|
+
}
|
|
4383
|
+
|
|
4384
|
+
export namespace PostModelVersionsUploadResponse {
|
|
4385
|
+
export type AsObject = {
|
|
4386
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4387
|
+
bytesRemaining: number,
|
|
4388
|
+
modelVersionId: string,
|
|
4389
|
+
}
|
|
4390
|
+
}
|
|
4391
|
+
|
|
4392
|
+
export class PostModelVersionsUploadConfig extends jspb.Message {
|
|
4393
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4394
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostModelVersionsUploadConfig;
|
|
4395
|
+
hasUserAppId(): boolean;
|
|
4396
|
+
clearUserAppId(): PostModelVersionsUploadConfig;
|
|
4397
|
+
|
|
4398
|
+
getModelId(): string;
|
|
4399
|
+
setModelId(value: string): PostModelVersionsUploadConfig;
|
|
4400
|
+
|
|
4401
|
+
getModelVersion(): proto_clarifai_api_resources_pb.ModelVersion | undefined;
|
|
4402
|
+
setModelVersion(value?: proto_clarifai_api_resources_pb.ModelVersion): PostModelVersionsUploadConfig;
|
|
4403
|
+
hasModelVersion(): boolean;
|
|
4404
|
+
clearModelVersion(): PostModelVersionsUploadConfig;
|
|
4405
|
+
|
|
4406
|
+
getTotalSize(): number;
|
|
4407
|
+
setTotalSize(value: number): PostModelVersionsUploadConfig;
|
|
4408
|
+
|
|
4409
|
+
serializeBinary(): Uint8Array;
|
|
4410
|
+
toObject(includeInstance?: boolean): PostModelVersionsUploadConfig.AsObject;
|
|
4411
|
+
static toObject(includeInstance: boolean, msg: PostModelVersionsUploadConfig): PostModelVersionsUploadConfig.AsObject;
|
|
4412
|
+
static serializeBinaryToWriter(message: PostModelVersionsUploadConfig, writer: jspb.BinaryWriter): void;
|
|
4413
|
+
static deserializeBinary(bytes: Uint8Array): PostModelVersionsUploadConfig;
|
|
4414
|
+
static deserializeBinaryFromReader(message: PostModelVersionsUploadConfig, reader: jspb.BinaryReader): PostModelVersionsUploadConfig;
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4417
|
+
export namespace PostModelVersionsUploadConfig {
|
|
4418
|
+
export type AsObject = {
|
|
4419
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4420
|
+
modelId: string,
|
|
4421
|
+
modelVersion?: proto_clarifai_api_resources_pb.ModelVersion.AsObject,
|
|
4422
|
+
totalSize: number,
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
|
|
4426
|
+
export class PutModelVersionExportsRequest extends jspb.Message {
|
|
4427
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4428
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PutModelVersionExportsRequest;
|
|
4429
|
+
hasUserAppId(): boolean;
|
|
4430
|
+
clearUserAppId(): PutModelVersionExportsRequest;
|
|
4431
|
+
|
|
4432
|
+
getModelId(): string;
|
|
4433
|
+
setModelId(value: string): PutModelVersionExportsRequest;
|
|
4434
|
+
|
|
4435
|
+
getVersionId(): string;
|
|
4436
|
+
setVersionId(value: string): PutModelVersionExportsRequest;
|
|
4437
|
+
|
|
4438
|
+
serializeBinary(): Uint8Array;
|
|
4439
|
+
toObject(includeInstance?: boolean): PutModelVersionExportsRequest.AsObject;
|
|
4440
|
+
static toObject(includeInstance: boolean, msg: PutModelVersionExportsRequest): PutModelVersionExportsRequest.AsObject;
|
|
4441
|
+
static serializeBinaryToWriter(message: PutModelVersionExportsRequest, writer: jspb.BinaryWriter): void;
|
|
4442
|
+
static deserializeBinary(bytes: Uint8Array): PutModelVersionExportsRequest;
|
|
4443
|
+
static deserializeBinaryFromReader(message: PutModelVersionExportsRequest, reader: jspb.BinaryReader): PutModelVersionExportsRequest;
|
|
4444
|
+
}
|
|
4445
|
+
|
|
4446
|
+
export namespace PutModelVersionExportsRequest {
|
|
4447
|
+
export type AsObject = {
|
|
4448
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4449
|
+
modelId: string,
|
|
4450
|
+
versionId: string,
|
|
4451
|
+
}
|
|
4452
|
+
}
|
|
4453
|
+
|
|
4454
|
+
export class GetModelVersionExportRequest extends jspb.Message {
|
|
4455
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4456
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetModelVersionExportRequest;
|
|
4457
|
+
hasUserAppId(): boolean;
|
|
4458
|
+
clearUserAppId(): GetModelVersionExportRequest;
|
|
4459
|
+
|
|
4460
|
+
getModelId(): string;
|
|
4461
|
+
setModelId(value: string): GetModelVersionExportRequest;
|
|
4462
|
+
|
|
4463
|
+
getVersionId(): string;
|
|
4464
|
+
setVersionId(value: string): GetModelVersionExportRequest;
|
|
4465
|
+
|
|
4466
|
+
serializeBinary(): Uint8Array;
|
|
4467
|
+
toObject(includeInstance?: boolean): GetModelVersionExportRequest.AsObject;
|
|
4468
|
+
static toObject(includeInstance: boolean, msg: GetModelVersionExportRequest): GetModelVersionExportRequest.AsObject;
|
|
4469
|
+
static serializeBinaryToWriter(message: GetModelVersionExportRequest, writer: jspb.BinaryWriter): void;
|
|
4470
|
+
static deserializeBinary(bytes: Uint8Array): GetModelVersionExportRequest;
|
|
4471
|
+
static deserializeBinaryFromReader(message: GetModelVersionExportRequest, reader: jspb.BinaryReader): GetModelVersionExportRequest;
|
|
4472
|
+
}
|
|
4473
|
+
|
|
4474
|
+
export namespace GetModelVersionExportRequest {
|
|
4475
|
+
export type AsObject = {
|
|
4476
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4477
|
+
modelId: string,
|
|
4478
|
+
versionId: string,
|
|
4479
|
+
}
|
|
4480
|
+
}
|
|
4481
|
+
|
|
4482
|
+
export class SingleModelVersionExportResponse extends jspb.Message {
|
|
4483
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
4484
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleModelVersionExportResponse;
|
|
4485
|
+
hasStatus(): boolean;
|
|
4486
|
+
clearStatus(): SingleModelVersionExportResponse;
|
|
4487
|
+
|
|
4488
|
+
getExport(): proto_clarifai_api_resources_pb.ModelVersionExport | undefined;
|
|
4489
|
+
setExport(value?: proto_clarifai_api_resources_pb.ModelVersionExport): SingleModelVersionExportResponse;
|
|
4490
|
+
hasExport(): boolean;
|
|
4491
|
+
clearExport(): SingleModelVersionExportResponse;
|
|
4492
|
+
|
|
4493
|
+
serializeBinary(): Uint8Array;
|
|
4494
|
+
toObject(includeInstance?: boolean): SingleModelVersionExportResponse.AsObject;
|
|
4495
|
+
static toObject(includeInstance: boolean, msg: SingleModelVersionExportResponse): SingleModelVersionExportResponse.AsObject;
|
|
4496
|
+
static serializeBinaryToWriter(message: SingleModelVersionExportResponse, writer: jspb.BinaryWriter): void;
|
|
4497
|
+
static deserializeBinary(bytes: Uint8Array): SingleModelVersionExportResponse;
|
|
4498
|
+
static deserializeBinaryFromReader(message: SingleModelVersionExportResponse, reader: jspb.BinaryReader): SingleModelVersionExportResponse;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
export namespace SingleModelVersionExportResponse {
|
|
4502
|
+
export type AsObject = {
|
|
4503
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
4504
|
+
pb_export?: proto_clarifai_api_resources_pb.ModelVersionExport.AsObject,
|
|
4505
|
+
}
|
|
4506
|
+
}
|
|
4507
|
+
|
|
4324
4508
|
export class PostWorkflowVersionsUnPublishRequest extends jspb.Message {
|
|
4325
4509
|
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
4326
4510
|
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostWorkflowVersionsUnPublishRequest;
|
|
@@ -8857,6 +9041,31 @@ export class PutTaskAssignmentsRequest extends jspb.Message {
|
|
|
8857
9041
|
getInputId(): string;
|
|
8858
9042
|
setInputId(value: string): PutTaskAssignmentsRequest;
|
|
8859
9043
|
|
|
9044
|
+
getAction(): PutTaskAssignmentsRequestAction;
|
|
9045
|
+
setAction(value: PutTaskAssignmentsRequestAction): PutTaskAssignmentsRequest;
|
|
9046
|
+
|
|
9047
|
+
getLabelSubmitConfig(): LabelSubmitConfig | undefined;
|
|
9048
|
+
setLabelSubmitConfig(value?: LabelSubmitConfig): PutTaskAssignmentsRequest;
|
|
9049
|
+
hasLabelSubmitConfig(): boolean;
|
|
9050
|
+
clearLabelSubmitConfig(): PutTaskAssignmentsRequest;
|
|
9051
|
+
|
|
9052
|
+
getReviewApproveConfig(): ReviewApproveConfig | undefined;
|
|
9053
|
+
setReviewApproveConfig(value?: ReviewApproveConfig): PutTaskAssignmentsRequest;
|
|
9054
|
+
hasReviewApproveConfig(): boolean;
|
|
9055
|
+
clearReviewApproveConfig(): PutTaskAssignmentsRequest;
|
|
9056
|
+
|
|
9057
|
+
getReviewRequestChangesConfig(): ReviewRequestChangesConfig | undefined;
|
|
9058
|
+
setReviewRequestChangesConfig(value?: ReviewRequestChangesConfig): PutTaskAssignmentsRequest;
|
|
9059
|
+
hasReviewRequestChangesConfig(): boolean;
|
|
9060
|
+
clearReviewRequestChangesConfig(): PutTaskAssignmentsRequest;
|
|
9061
|
+
|
|
9062
|
+
getReviewRejectConfig(): ReviewRejectConfig | undefined;
|
|
9063
|
+
setReviewRejectConfig(value?: ReviewRejectConfig): PutTaskAssignmentsRequest;
|
|
9064
|
+
hasReviewRejectConfig(): boolean;
|
|
9065
|
+
clearReviewRejectConfig(): PutTaskAssignmentsRequest;
|
|
9066
|
+
|
|
9067
|
+
getActionConfigCase(): PutTaskAssignmentsRequest.ActionConfigCase;
|
|
9068
|
+
|
|
8860
9069
|
serializeBinary(): Uint8Array;
|
|
8861
9070
|
toObject(includeInstance?: boolean): PutTaskAssignmentsRequest.AsObject;
|
|
8862
9071
|
static toObject(includeInstance: boolean, msg: PutTaskAssignmentsRequest): PutTaskAssignmentsRequest.AsObject;
|
|
@@ -8870,6 +9079,143 @@ export namespace PutTaskAssignmentsRequest {
|
|
|
8870
9079
|
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
8871
9080
|
taskId: string,
|
|
8872
9081
|
inputId: string,
|
|
9082
|
+
action: PutTaskAssignmentsRequestAction,
|
|
9083
|
+
labelSubmitConfig?: LabelSubmitConfig.AsObject,
|
|
9084
|
+
reviewApproveConfig?: ReviewApproveConfig.AsObject,
|
|
9085
|
+
reviewRequestChangesConfig?: ReviewRequestChangesConfig.AsObject,
|
|
9086
|
+
reviewRejectConfig?: ReviewRejectConfig.AsObject,
|
|
9087
|
+
}
|
|
9088
|
+
|
|
9089
|
+
export enum ActionConfigCase {
|
|
9090
|
+
ACTION_CONFIG_NOT_SET = 0,
|
|
9091
|
+
LABEL_SUBMIT_CONFIG = 6,
|
|
9092
|
+
REVIEW_APPROVE_CONFIG = 7,
|
|
9093
|
+
REVIEW_REQUEST_CHANGES_CONFIG = 8,
|
|
9094
|
+
REVIEW_REJECT_CONFIG = 9,
|
|
9095
|
+
}
|
|
9096
|
+
}
|
|
9097
|
+
|
|
9098
|
+
export class LabelSubmitConfig extends jspb.Message {
|
|
9099
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9100
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): LabelSubmitConfig;
|
|
9101
|
+
clearTaskAssignmentsList(): LabelSubmitConfig;
|
|
9102
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9103
|
+
|
|
9104
|
+
serializeBinary(): Uint8Array;
|
|
9105
|
+
toObject(includeInstance?: boolean): LabelSubmitConfig.AsObject;
|
|
9106
|
+
static toObject(includeInstance: boolean, msg: LabelSubmitConfig): LabelSubmitConfig.AsObject;
|
|
9107
|
+
static serializeBinaryToWriter(message: LabelSubmitConfig, writer: jspb.BinaryWriter): void;
|
|
9108
|
+
static deserializeBinary(bytes: Uint8Array): LabelSubmitConfig;
|
|
9109
|
+
static deserializeBinaryFromReader(message: LabelSubmitConfig, reader: jspb.BinaryReader): LabelSubmitConfig;
|
|
9110
|
+
}
|
|
9111
|
+
|
|
9112
|
+
export namespace LabelSubmitConfig {
|
|
9113
|
+
export type AsObject = {
|
|
9114
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
9115
|
+
}
|
|
9116
|
+
}
|
|
9117
|
+
|
|
9118
|
+
export class ReviewApproveConfig extends jspb.Message {
|
|
9119
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9120
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): ReviewApproveConfig;
|
|
9121
|
+
clearTaskAssignmentsList(): ReviewApproveConfig;
|
|
9122
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9123
|
+
|
|
9124
|
+
getWorkersList(): Array<proto_clarifai_api_resources_pb.Worker>;
|
|
9125
|
+
setWorkersList(value: Array<proto_clarifai_api_resources_pb.Worker>): ReviewApproveConfig;
|
|
9126
|
+
clearWorkersList(): ReviewApproveConfig;
|
|
9127
|
+
addWorkers(value?: proto_clarifai_api_resources_pb.Worker, index?: number): proto_clarifai_api_resources_pb.Worker;
|
|
9128
|
+
|
|
9129
|
+
serializeBinary(): Uint8Array;
|
|
9130
|
+
toObject(includeInstance?: boolean): ReviewApproveConfig.AsObject;
|
|
9131
|
+
static toObject(includeInstance: boolean, msg: ReviewApproveConfig): ReviewApproveConfig.AsObject;
|
|
9132
|
+
static serializeBinaryToWriter(message: ReviewApproveConfig, writer: jspb.BinaryWriter): void;
|
|
9133
|
+
static deserializeBinary(bytes: Uint8Array): ReviewApproveConfig;
|
|
9134
|
+
static deserializeBinaryFromReader(message: ReviewApproveConfig, reader: jspb.BinaryReader): ReviewApproveConfig;
|
|
9135
|
+
}
|
|
9136
|
+
|
|
9137
|
+
export namespace ReviewApproveConfig {
|
|
9138
|
+
export type AsObject = {
|
|
9139
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
9140
|
+
workersList: Array<proto_clarifai_api_resources_pb.Worker.AsObject>,
|
|
9141
|
+
}
|
|
9142
|
+
}
|
|
9143
|
+
|
|
9144
|
+
export class ReviewRequestChangesConfig extends jspb.Message {
|
|
9145
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9146
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): ReviewRequestChangesConfig;
|
|
9147
|
+
clearTaskAssignmentsList(): ReviewRequestChangesConfig;
|
|
9148
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9149
|
+
|
|
9150
|
+
getWorkersList(): Array<proto_clarifai_api_resources_pb.Worker>;
|
|
9151
|
+
setWorkersList(value: Array<proto_clarifai_api_resources_pb.Worker>): ReviewRequestChangesConfig;
|
|
9152
|
+
clearWorkersList(): ReviewRequestChangesConfig;
|
|
9153
|
+
addWorkers(value?: proto_clarifai_api_resources_pb.Worker, index?: number): proto_clarifai_api_resources_pb.Worker;
|
|
9154
|
+
|
|
9155
|
+
serializeBinary(): Uint8Array;
|
|
9156
|
+
toObject(includeInstance?: boolean): ReviewRequestChangesConfig.AsObject;
|
|
9157
|
+
static toObject(includeInstance: boolean, msg: ReviewRequestChangesConfig): ReviewRequestChangesConfig.AsObject;
|
|
9158
|
+
static serializeBinaryToWriter(message: ReviewRequestChangesConfig, writer: jspb.BinaryWriter): void;
|
|
9159
|
+
static deserializeBinary(bytes: Uint8Array): ReviewRequestChangesConfig;
|
|
9160
|
+
static deserializeBinaryFromReader(message: ReviewRequestChangesConfig, reader: jspb.BinaryReader): ReviewRequestChangesConfig;
|
|
9161
|
+
}
|
|
9162
|
+
|
|
9163
|
+
export namespace ReviewRequestChangesConfig {
|
|
9164
|
+
export type AsObject = {
|
|
9165
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
9166
|
+
workersList: Array<proto_clarifai_api_resources_pb.Worker.AsObject>,
|
|
9167
|
+
}
|
|
9168
|
+
}
|
|
9169
|
+
|
|
9170
|
+
export class ReviewRejectConfig extends jspb.Message {
|
|
9171
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9172
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): ReviewRejectConfig;
|
|
9173
|
+
clearTaskAssignmentsList(): ReviewRejectConfig;
|
|
9174
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9175
|
+
|
|
9176
|
+
getWorkersList(): Array<proto_clarifai_api_resources_pb.Worker>;
|
|
9177
|
+
setWorkersList(value: Array<proto_clarifai_api_resources_pb.Worker>): ReviewRejectConfig;
|
|
9178
|
+
clearWorkersList(): ReviewRejectConfig;
|
|
9179
|
+
addWorkers(value?: proto_clarifai_api_resources_pb.Worker, index?: number): proto_clarifai_api_resources_pb.Worker;
|
|
9180
|
+
|
|
9181
|
+
serializeBinary(): Uint8Array;
|
|
9182
|
+
toObject(includeInstance?: boolean): ReviewRejectConfig.AsObject;
|
|
9183
|
+
static toObject(includeInstance: boolean, msg: ReviewRejectConfig): ReviewRejectConfig.AsObject;
|
|
9184
|
+
static serializeBinaryToWriter(message: ReviewRejectConfig, writer: jspb.BinaryWriter): void;
|
|
9185
|
+
static deserializeBinary(bytes: Uint8Array): ReviewRejectConfig;
|
|
9186
|
+
static deserializeBinaryFromReader(message: ReviewRejectConfig, reader: jspb.BinaryReader): ReviewRejectConfig;
|
|
9187
|
+
}
|
|
9188
|
+
|
|
9189
|
+
export namespace ReviewRejectConfig {
|
|
9190
|
+
export type AsObject = {
|
|
9191
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
9192
|
+
workersList: Array<proto_clarifai_api_resources_pb.Worker.AsObject>,
|
|
9193
|
+
}
|
|
9194
|
+
}
|
|
9195
|
+
|
|
9196
|
+
export class MultiTaskAssignmentResponse extends jspb.Message {
|
|
9197
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
9198
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiTaskAssignmentResponse;
|
|
9199
|
+
hasStatus(): boolean;
|
|
9200
|
+
clearStatus(): MultiTaskAssignmentResponse;
|
|
9201
|
+
|
|
9202
|
+
getTaskAssignmentsList(): Array<proto_clarifai_api_resources_pb.TaskAssignment>;
|
|
9203
|
+
setTaskAssignmentsList(value: Array<proto_clarifai_api_resources_pb.TaskAssignment>): MultiTaskAssignmentResponse;
|
|
9204
|
+
clearTaskAssignmentsList(): MultiTaskAssignmentResponse;
|
|
9205
|
+
addTaskAssignments(value?: proto_clarifai_api_resources_pb.TaskAssignment, index?: number): proto_clarifai_api_resources_pb.TaskAssignment;
|
|
9206
|
+
|
|
9207
|
+
serializeBinary(): Uint8Array;
|
|
9208
|
+
toObject(includeInstance?: boolean): MultiTaskAssignmentResponse.AsObject;
|
|
9209
|
+
static toObject(includeInstance: boolean, msg: MultiTaskAssignmentResponse): MultiTaskAssignmentResponse.AsObject;
|
|
9210
|
+
static serializeBinaryToWriter(message: MultiTaskAssignmentResponse, writer: jspb.BinaryWriter): void;
|
|
9211
|
+
static deserializeBinary(bytes: Uint8Array): MultiTaskAssignmentResponse;
|
|
9212
|
+
static deserializeBinaryFromReader(message: MultiTaskAssignmentResponse, reader: jspb.BinaryReader): MultiTaskAssignmentResponse;
|
|
9213
|
+
}
|
|
9214
|
+
|
|
9215
|
+
export namespace MultiTaskAssignmentResponse {
|
|
9216
|
+
export type AsObject = {
|
|
9217
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
9218
|
+
taskAssignmentsList: Array<proto_clarifai_api_resources_pb.TaskAssignment.AsObject>,
|
|
8873
9219
|
}
|
|
8874
9220
|
}
|
|
8875
9221
|
|
|
@@ -9759,3 +10105,12 @@ export enum OrganizationInvitationStatus {
|
|
|
9759
10105
|
DECLINED = 4,
|
|
9760
10106
|
EXPIRED = 5,
|
|
9761
10107
|
}
|
|
10108
|
+
export enum PutTaskAssignmentsRequestAction {
|
|
10109
|
+
PUT_TASK_ASSIGNMENTS_REQUEST_ACTION_NOT_SET = 0,
|
|
10110
|
+
LABEL_START = 1,
|
|
10111
|
+
LABEL_SUBMIT = 2,
|
|
10112
|
+
REVIEW_START = 10,
|
|
10113
|
+
REVIEW_APPROVE = 11,
|
|
10114
|
+
REVIEW_REQUEST_CHANGES = 12,
|
|
10115
|
+
REVIEW_REJECT = 13,
|
|
10116
|
+
}
|