clarifai-web-grpc 5.0.0 → 5.1.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/CHANGELOG.md +4 -9
- package/README.md +15 -18
- package/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +1644 -34
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +126 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +1034 -48
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +8 -21
- package/dist/cjs/proto/clarifai/api/status/status_pb.js +6 -15
- package/dist/cjs/proto/clarifai/api/utils/extensions_pb.js +6 -15
- package/dist/cjs/proto/clarifai/api/utils/matrix_pb.js +6 -15
- package/dist/cjs/proto/clarifai/api/utils/test_proto_pb.js +6 -15
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +6 -15
- package/dist/cjs/proto/clarifai/auth/types/types_pb.js +6 -15
- package/dist/cjs/proto/clarifai/auth/util/extension_pb.js +6 -15
- package/dist/esm/proto/clarifai/api/resources_pb.js +1644 -34
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +126 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +1034 -48
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +8 -21
- package/dist/esm/proto/clarifai/api/status/status_pb.js +6 -15
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.js +6 -15
- package/dist/esm/proto/clarifai/api/utils/matrix_pb.js +6 -15
- package/dist/esm/proto/clarifai/api/utils/test_proto_pb.js +6 -15
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +6 -15
- package/dist/esm/proto/clarifai/auth/types/types_pb.js +6 -15
- package/dist/esm/proto/clarifai/auth/util/extension_pb.js +6 -15
- package/package.json +2 -2
- package/package.json-E +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +251 -6
- package/proto/clarifai/api/resources_pb.js +2246 -230
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +36 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +183 -0
- package/proto/clarifai/api/service_pb.d.ts +150 -8
- package/proto/clarifai/api/service_pb.js +1278 -62
- package/proto/clarifai/api/status/status_code_pb.d.ts +2 -6
- package/proto/clarifai/api/status/status_code_pb.js +9 -13
- package/proto/clarifai/api/status/status_pb.js +7 -7
- package/proto/clarifai/api/utils/extensions_pb.js +7 -7
- package/proto/clarifai/api/utils/matrix_pb.js +7 -7
- package/proto/clarifai/api/utils/test_proto_pb.js +7 -7
- package/proto/clarifai/auth/scope/scope_pb.js +7 -7
- package/proto/clarifai/auth/types/types_pb.js +7 -7
- package/proto/clarifai/auth/util/extension_pb.js +7 -7
|
@@ -1346,6 +1346,27 @@ export class V2Client {
|
|
|
1346
1346
|
response: proto_clarifai_api_status_status_pb.BaseResponse) => void
|
|
1347
1347
|
): grpcWeb.ClientReadableStream<proto_clarifai_api_status_status_pb.BaseResponse>;
|
|
1348
1348
|
|
|
1349
|
+
postInputsDataSources(
|
|
1350
|
+
request: proto_clarifai_api_service_pb.PostInputsDataSourcesRequest,
|
|
1351
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
1352
|
+
callback: (err: grpcWeb.RpcError,
|
|
1353
|
+
response: proto_clarifai_api_service_pb.MultiInputsAddJobResponse) => void
|
|
1354
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiInputsAddJobResponse>;
|
|
1355
|
+
|
|
1356
|
+
getInputsExtractionJob(
|
|
1357
|
+
request: proto_clarifai_api_service_pb.GetInputsExtractionJobRequest,
|
|
1358
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
1359
|
+
callback: (err: grpcWeb.RpcError,
|
|
1360
|
+
response: proto_clarifai_api_service_pb.SingleInputsExtractionJobResponse) => void
|
|
1361
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.SingleInputsExtractionJobResponse>;
|
|
1362
|
+
|
|
1363
|
+
listInputsExtractionJobs(
|
|
1364
|
+
request: proto_clarifai_api_service_pb.ListInputsExtractionJobsRequest,
|
|
1365
|
+
metadata: grpcWeb.Metadata | undefined,
|
|
1366
|
+
callback: (err: grpcWeb.RpcError,
|
|
1367
|
+
response: proto_clarifai_api_service_pb.MultiInputsExtractionJobResponse) => void
|
|
1368
|
+
): grpcWeb.ClientReadableStream<proto_clarifai_api_service_pb.MultiInputsExtractionJobResponse>;
|
|
1369
|
+
|
|
1349
1370
|
}
|
|
1350
1371
|
|
|
1351
1372
|
export class V2PromiseClient {
|
|
@@ -2308,5 +2329,20 @@ export class V2PromiseClient {
|
|
|
2308
2329
|
metadata?: grpcWeb.Metadata
|
|
2309
2330
|
): Promise<proto_clarifai_api_status_status_pb.BaseResponse>;
|
|
2310
2331
|
|
|
2332
|
+
postInputsDataSources(
|
|
2333
|
+
request: proto_clarifai_api_service_pb.PostInputsDataSourcesRequest,
|
|
2334
|
+
metadata?: grpcWeb.Metadata
|
|
2335
|
+
): Promise<proto_clarifai_api_service_pb.MultiInputsAddJobResponse>;
|
|
2336
|
+
|
|
2337
|
+
getInputsExtractionJob(
|
|
2338
|
+
request: proto_clarifai_api_service_pb.GetInputsExtractionJobRequest,
|
|
2339
|
+
metadata?: grpcWeb.Metadata
|
|
2340
|
+
): Promise<proto_clarifai_api_service_pb.SingleInputsExtractionJobResponse>;
|
|
2341
|
+
|
|
2342
|
+
listInputsExtractionJobs(
|
|
2343
|
+
request: proto_clarifai_api_service_pb.ListInputsExtractionJobsRequest,
|
|
2344
|
+
metadata?: grpcWeb.Metadata
|
|
2345
|
+
): Promise<proto_clarifai_api_service_pb.MultiInputsExtractionJobResponse>;
|
|
2346
|
+
|
|
2311
2347
|
}
|
|
2312
2348
|
|
|
@@ -11742,5 +11742,188 @@ proto.clarifai.api.V2PromiseClient.prototype.deleteUploads =
|
|
|
11742
11742
|
};
|
|
11743
11743
|
|
|
11744
11744
|
|
|
11745
|
+
/**
|
|
11746
|
+
* @const
|
|
11747
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
11748
|
+
* !proto.clarifai.api.PostInputsDataSourcesRequest,
|
|
11749
|
+
* !proto.clarifai.api.MultiInputsAddJobResponse>}
|
|
11750
|
+
*/
|
|
11751
|
+
const methodDescriptor_V2_PostInputsDataSources = new grpc.web.MethodDescriptor(
|
|
11752
|
+
'/clarifai.api.V2/PostInputsDataSources',
|
|
11753
|
+
grpc.web.MethodType.UNARY,
|
|
11754
|
+
proto.clarifai.api.PostInputsDataSourcesRequest,
|
|
11755
|
+
proto.clarifai.api.MultiInputsAddJobResponse,
|
|
11756
|
+
/**
|
|
11757
|
+
* @param {!proto.clarifai.api.PostInputsDataSourcesRequest} request
|
|
11758
|
+
* @return {!Uint8Array}
|
|
11759
|
+
*/
|
|
11760
|
+
function(request) {
|
|
11761
|
+
return request.serializeBinary();
|
|
11762
|
+
},
|
|
11763
|
+
proto.clarifai.api.MultiInputsAddJobResponse.deserializeBinary
|
|
11764
|
+
);
|
|
11765
|
+
|
|
11766
|
+
|
|
11767
|
+
/**
|
|
11768
|
+
* @param {!proto.clarifai.api.PostInputsDataSourcesRequest} request The
|
|
11769
|
+
* request proto
|
|
11770
|
+
* @param {?Object<string, string>} metadata User defined
|
|
11771
|
+
* call metadata
|
|
11772
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiInputsAddJobResponse)}
|
|
11773
|
+
* callback The callback function(error, response)
|
|
11774
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiInputsAddJobResponse>|undefined}
|
|
11775
|
+
* The XHR Node Readable Stream
|
|
11776
|
+
*/
|
|
11777
|
+
proto.clarifai.api.V2Client.prototype.postInputsDataSources =
|
|
11778
|
+
function(request, metadata, callback) {
|
|
11779
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
11780
|
+
'/clarifai.api.V2/PostInputsDataSources',
|
|
11781
|
+
request,
|
|
11782
|
+
metadata || {},
|
|
11783
|
+
methodDescriptor_V2_PostInputsDataSources,
|
|
11784
|
+
callback);
|
|
11785
|
+
};
|
|
11786
|
+
|
|
11787
|
+
|
|
11788
|
+
/**
|
|
11789
|
+
* @param {!proto.clarifai.api.PostInputsDataSourcesRequest} request The
|
|
11790
|
+
* request proto
|
|
11791
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
11792
|
+
* call metadata
|
|
11793
|
+
* @return {!Promise<!proto.clarifai.api.MultiInputsAddJobResponse>}
|
|
11794
|
+
* Promise that resolves to the response
|
|
11795
|
+
*/
|
|
11796
|
+
proto.clarifai.api.V2PromiseClient.prototype.postInputsDataSources =
|
|
11797
|
+
function(request, metadata) {
|
|
11798
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
11799
|
+
'/clarifai.api.V2/PostInputsDataSources',
|
|
11800
|
+
request,
|
|
11801
|
+
metadata || {},
|
|
11802
|
+
methodDescriptor_V2_PostInputsDataSources);
|
|
11803
|
+
};
|
|
11804
|
+
|
|
11805
|
+
|
|
11806
|
+
/**
|
|
11807
|
+
* @const
|
|
11808
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
11809
|
+
* !proto.clarifai.api.GetInputsExtractionJobRequest,
|
|
11810
|
+
* !proto.clarifai.api.SingleInputsExtractionJobResponse>}
|
|
11811
|
+
*/
|
|
11812
|
+
const methodDescriptor_V2_GetInputsExtractionJob = new grpc.web.MethodDescriptor(
|
|
11813
|
+
'/clarifai.api.V2/GetInputsExtractionJob',
|
|
11814
|
+
grpc.web.MethodType.UNARY,
|
|
11815
|
+
proto.clarifai.api.GetInputsExtractionJobRequest,
|
|
11816
|
+
proto.clarifai.api.SingleInputsExtractionJobResponse,
|
|
11817
|
+
/**
|
|
11818
|
+
* @param {!proto.clarifai.api.GetInputsExtractionJobRequest} request
|
|
11819
|
+
* @return {!Uint8Array}
|
|
11820
|
+
*/
|
|
11821
|
+
function(request) {
|
|
11822
|
+
return request.serializeBinary();
|
|
11823
|
+
},
|
|
11824
|
+
proto.clarifai.api.SingleInputsExtractionJobResponse.deserializeBinary
|
|
11825
|
+
);
|
|
11826
|
+
|
|
11827
|
+
|
|
11828
|
+
/**
|
|
11829
|
+
* @param {!proto.clarifai.api.GetInputsExtractionJobRequest} request The
|
|
11830
|
+
* request proto
|
|
11831
|
+
* @param {?Object<string, string>} metadata User defined
|
|
11832
|
+
* call metadata
|
|
11833
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.SingleInputsExtractionJobResponse)}
|
|
11834
|
+
* callback The callback function(error, response)
|
|
11835
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.SingleInputsExtractionJobResponse>|undefined}
|
|
11836
|
+
* The XHR Node Readable Stream
|
|
11837
|
+
*/
|
|
11838
|
+
proto.clarifai.api.V2Client.prototype.getInputsExtractionJob =
|
|
11839
|
+
function(request, metadata, callback) {
|
|
11840
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
11841
|
+
'/clarifai.api.V2/GetInputsExtractionJob',
|
|
11842
|
+
request,
|
|
11843
|
+
metadata || {},
|
|
11844
|
+
methodDescriptor_V2_GetInputsExtractionJob,
|
|
11845
|
+
callback);
|
|
11846
|
+
};
|
|
11847
|
+
|
|
11848
|
+
|
|
11849
|
+
/**
|
|
11850
|
+
* @param {!proto.clarifai.api.GetInputsExtractionJobRequest} request The
|
|
11851
|
+
* request proto
|
|
11852
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
11853
|
+
* call metadata
|
|
11854
|
+
* @return {!Promise<!proto.clarifai.api.SingleInputsExtractionJobResponse>}
|
|
11855
|
+
* Promise that resolves to the response
|
|
11856
|
+
*/
|
|
11857
|
+
proto.clarifai.api.V2PromiseClient.prototype.getInputsExtractionJob =
|
|
11858
|
+
function(request, metadata) {
|
|
11859
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
11860
|
+
'/clarifai.api.V2/GetInputsExtractionJob',
|
|
11861
|
+
request,
|
|
11862
|
+
metadata || {},
|
|
11863
|
+
methodDescriptor_V2_GetInputsExtractionJob);
|
|
11864
|
+
};
|
|
11865
|
+
|
|
11866
|
+
|
|
11867
|
+
/**
|
|
11868
|
+
* @const
|
|
11869
|
+
* @type {!grpc.web.MethodDescriptor<
|
|
11870
|
+
* !proto.clarifai.api.ListInputsExtractionJobsRequest,
|
|
11871
|
+
* !proto.clarifai.api.MultiInputsExtractionJobResponse>}
|
|
11872
|
+
*/
|
|
11873
|
+
const methodDescriptor_V2_ListInputsExtractionJobs = new grpc.web.MethodDescriptor(
|
|
11874
|
+
'/clarifai.api.V2/ListInputsExtractionJobs',
|
|
11875
|
+
grpc.web.MethodType.UNARY,
|
|
11876
|
+
proto.clarifai.api.ListInputsExtractionJobsRequest,
|
|
11877
|
+
proto.clarifai.api.MultiInputsExtractionJobResponse,
|
|
11878
|
+
/**
|
|
11879
|
+
* @param {!proto.clarifai.api.ListInputsExtractionJobsRequest} request
|
|
11880
|
+
* @return {!Uint8Array}
|
|
11881
|
+
*/
|
|
11882
|
+
function(request) {
|
|
11883
|
+
return request.serializeBinary();
|
|
11884
|
+
},
|
|
11885
|
+
proto.clarifai.api.MultiInputsExtractionJobResponse.deserializeBinary
|
|
11886
|
+
);
|
|
11887
|
+
|
|
11888
|
+
|
|
11889
|
+
/**
|
|
11890
|
+
* @param {!proto.clarifai.api.ListInputsExtractionJobsRequest} request The
|
|
11891
|
+
* request proto
|
|
11892
|
+
* @param {?Object<string, string>} metadata User defined
|
|
11893
|
+
* call metadata
|
|
11894
|
+
* @param {function(?grpc.web.RpcError, ?proto.clarifai.api.MultiInputsExtractionJobResponse)}
|
|
11895
|
+
* callback The callback function(error, response)
|
|
11896
|
+
* @return {!grpc.web.ClientReadableStream<!proto.clarifai.api.MultiInputsExtractionJobResponse>|undefined}
|
|
11897
|
+
* The XHR Node Readable Stream
|
|
11898
|
+
*/
|
|
11899
|
+
proto.clarifai.api.V2Client.prototype.listInputsExtractionJobs =
|
|
11900
|
+
function(request, metadata, callback) {
|
|
11901
|
+
return this.client_.rpcCall(this.hostname_ +
|
|
11902
|
+
'/clarifai.api.V2/ListInputsExtractionJobs',
|
|
11903
|
+
request,
|
|
11904
|
+
metadata || {},
|
|
11905
|
+
methodDescriptor_V2_ListInputsExtractionJobs,
|
|
11906
|
+
callback);
|
|
11907
|
+
};
|
|
11908
|
+
|
|
11909
|
+
|
|
11910
|
+
/**
|
|
11911
|
+
* @param {!proto.clarifai.api.ListInputsExtractionJobsRequest} request The
|
|
11912
|
+
* request proto
|
|
11913
|
+
* @param {?Object<string, string>=} metadata User defined
|
|
11914
|
+
* call metadata
|
|
11915
|
+
* @return {!Promise<!proto.clarifai.api.MultiInputsExtractionJobResponse>}
|
|
11916
|
+
* Promise that resolves to the response
|
|
11917
|
+
*/
|
|
11918
|
+
proto.clarifai.api.V2PromiseClient.prototype.listInputsExtractionJobs =
|
|
11919
|
+
function(request, metadata) {
|
|
11920
|
+
return this.client_.unaryCall(this.hostname_ +
|
|
11921
|
+
'/clarifai.api.V2/ListInputsExtractionJobs',
|
|
11922
|
+
request,
|
|
11923
|
+
metadata || {},
|
|
11924
|
+
methodDescriptor_V2_ListInputsExtractionJobs);
|
|
11925
|
+
};
|
|
11926
|
+
|
|
11927
|
+
|
|
11745
11928
|
module.exports = proto.clarifai.api;
|
|
11746
11929
|
|
|
@@ -713,6 +713,12 @@ export class ListCollaboratorsRequest extends jspb.Message {
|
|
|
713
713
|
getListAllCollaborators(): boolean;
|
|
714
714
|
setListAllCollaborators(value: boolean): ListCollaboratorsRequest;
|
|
715
715
|
|
|
716
|
+
getPage(): number;
|
|
717
|
+
setPage(value: number): ListCollaboratorsRequest;
|
|
718
|
+
|
|
719
|
+
getPerPage(): number;
|
|
720
|
+
setPerPage(value: number): ListCollaboratorsRequest;
|
|
721
|
+
|
|
716
722
|
serializeBinary(): Uint8Array;
|
|
717
723
|
toObject(includeInstance?: boolean): ListCollaboratorsRequest.AsObject;
|
|
718
724
|
static toObject(includeInstance: boolean, msg: ListCollaboratorsRequest): ListCollaboratorsRequest.AsObject;
|
|
@@ -725,6 +731,8 @@ export namespace ListCollaboratorsRequest {
|
|
|
725
731
|
export type AsObject = {
|
|
726
732
|
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
727
733
|
listAllCollaborators: boolean,
|
|
734
|
+
page: number,
|
|
735
|
+
perPage: number,
|
|
728
736
|
}
|
|
729
737
|
}
|
|
730
738
|
|
|
@@ -3256,6 +3264,9 @@ export class ListModelsRequest extends jspb.Message {
|
|
|
3256
3264
|
clearAdditionalFieldsList(): ListModelsRequest;
|
|
3257
3265
|
addAdditionalFields(value: string, index?: number): ListModelsRequest;
|
|
3258
3266
|
|
|
3267
|
+
getDontFetchFromMain(): boolean;
|
|
3268
|
+
setDontFetchFromMain(value: boolean): ListModelsRequest;
|
|
3269
|
+
|
|
3259
3270
|
getSortByCase(): ListModelsRequest.SortByCase;
|
|
3260
3271
|
|
|
3261
3272
|
serializeBinary(): Uint8Array;
|
|
@@ -3289,6 +3300,7 @@ export namespace ListModelsRequest {
|
|
|
3289
3300
|
useCasesList: Array<string>,
|
|
3290
3301
|
languagesList: Array<string>,
|
|
3291
3302
|
additionalFieldsList: Array<string>,
|
|
3303
|
+
dontFetchFromMain: boolean,
|
|
3292
3304
|
}
|
|
3293
3305
|
|
|
3294
3306
|
export enum SortByCase {
|
|
@@ -4000,9 +4012,6 @@ export class PostModelVersionsRequest extends jspb.Message {
|
|
|
4000
4012
|
hasTestSearch(): boolean;
|
|
4001
4013
|
clearTestSearch(): PostModelVersionsRequest;
|
|
4002
4014
|
|
|
4003
|
-
getEvaluateAfterTraining(): boolean;
|
|
4004
|
-
setEvaluateAfterTraining(value: boolean): PostModelVersionsRequest;
|
|
4005
|
-
|
|
4006
4015
|
getDescription(): string;
|
|
4007
4016
|
setDescription(value: string): PostModelVersionsRequest;
|
|
4008
4017
|
|
|
@@ -4032,7 +4041,6 @@ export namespace PostModelVersionsRequest {
|
|
|
4032
4041
|
search?: proto_clarifai_api_resources_pb.Search.AsObject,
|
|
4033
4042
|
trainSearch?: proto_clarifai_api_resources_pb.Search.AsObject,
|
|
4034
4043
|
testSearch?: proto_clarifai_api_resources_pb.Search.AsObject,
|
|
4035
|
-
evaluateAfterTraining: boolean,
|
|
4036
4044
|
description: string,
|
|
4037
4045
|
datasetVersion?: proto_clarifai_api_resources_pb.DatasetVersion.AsObject,
|
|
4038
4046
|
evalInfo?: proto_clarifai_api_resources_pb.EvalInfo.AsObject,
|
|
@@ -4243,9 +4251,6 @@ export class PostModelVersionMetricsRequest extends jspb.Message {
|
|
|
4243
4251
|
getVersionId(): string;
|
|
4244
4252
|
setVersionId(value: string): PostModelVersionMetricsRequest;
|
|
4245
4253
|
|
|
4246
|
-
getMaxExamples(): number;
|
|
4247
|
-
setMaxExamples(value: number): PostModelVersionMetricsRequest;
|
|
4248
|
-
|
|
4249
4254
|
getTestSearch(): proto_clarifai_api_resources_pb.Search | undefined;
|
|
4250
4255
|
setTestSearch(value?: proto_clarifai_api_resources_pb.Search): PostModelVersionMetricsRequest;
|
|
4251
4256
|
hasTestSearch(): boolean;
|
|
@@ -4269,7 +4274,6 @@ export namespace PostModelVersionMetricsRequest {
|
|
|
4269
4274
|
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
4270
4275
|
modelId: string,
|
|
4271
4276
|
versionId: string,
|
|
4272
|
-
maxExamples: number,
|
|
4273
4277
|
testSearch?: proto_clarifai_api_resources_pb.Search.AsObject,
|
|
4274
4278
|
evalInfo?: proto_clarifai_api_resources_pb.EvalInfo.AsObject,
|
|
4275
4279
|
}
|
|
@@ -8263,6 +8267,144 @@ export namespace PutUploadContentPartsRequest {
|
|
|
8263
8267
|
}
|
|
8264
8268
|
}
|
|
8265
8269
|
|
|
8270
|
+
export class PostInputsDataSourcesRequest extends jspb.Message {
|
|
8271
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
8272
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): PostInputsDataSourcesRequest;
|
|
8273
|
+
hasUserAppId(): boolean;
|
|
8274
|
+
clearUserAppId(): PostInputsDataSourcesRequest;
|
|
8275
|
+
|
|
8276
|
+
getDataSourcesList(): Array<proto_clarifai_api_resources_pb.InputsDataSource>;
|
|
8277
|
+
setDataSourcesList(value: Array<proto_clarifai_api_resources_pb.InputsDataSource>): PostInputsDataSourcesRequest;
|
|
8278
|
+
clearDataSourcesList(): PostInputsDataSourcesRequest;
|
|
8279
|
+
addDataSources(value?: proto_clarifai_api_resources_pb.InputsDataSource, index?: number): proto_clarifai_api_resources_pb.InputsDataSource;
|
|
8280
|
+
|
|
8281
|
+
getCallBackUrl(): string;
|
|
8282
|
+
setCallBackUrl(value: string): PostInputsDataSourcesRequest;
|
|
8283
|
+
|
|
8284
|
+
getAppPat(): string;
|
|
8285
|
+
setAppPat(value: string): PostInputsDataSourcesRequest;
|
|
8286
|
+
|
|
8287
|
+
serializeBinary(): Uint8Array;
|
|
8288
|
+
toObject(includeInstance?: boolean): PostInputsDataSourcesRequest.AsObject;
|
|
8289
|
+
static toObject(includeInstance: boolean, msg: PostInputsDataSourcesRequest): PostInputsDataSourcesRequest.AsObject;
|
|
8290
|
+
static serializeBinaryToWriter(message: PostInputsDataSourcesRequest, writer: jspb.BinaryWriter): void;
|
|
8291
|
+
static deserializeBinary(bytes: Uint8Array): PostInputsDataSourcesRequest;
|
|
8292
|
+
static deserializeBinaryFromReader(message: PostInputsDataSourcesRequest, reader: jspb.BinaryReader): PostInputsDataSourcesRequest;
|
|
8293
|
+
}
|
|
8294
|
+
|
|
8295
|
+
export namespace PostInputsDataSourcesRequest {
|
|
8296
|
+
export type AsObject = {
|
|
8297
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
8298
|
+
dataSourcesList: Array<proto_clarifai_api_resources_pb.InputsDataSource.AsObject>,
|
|
8299
|
+
callBackUrl: string,
|
|
8300
|
+
appPat: string,
|
|
8301
|
+
}
|
|
8302
|
+
}
|
|
8303
|
+
|
|
8304
|
+
export class GetInputsExtractionJobRequest extends jspb.Message {
|
|
8305
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
8306
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): GetInputsExtractionJobRequest;
|
|
8307
|
+
hasUserAppId(): boolean;
|
|
8308
|
+
clearUserAppId(): GetInputsExtractionJobRequest;
|
|
8309
|
+
|
|
8310
|
+
getInputsExtractionJobId(): string;
|
|
8311
|
+
setInputsExtractionJobId(value: string): GetInputsExtractionJobRequest;
|
|
8312
|
+
|
|
8313
|
+
serializeBinary(): Uint8Array;
|
|
8314
|
+
toObject(includeInstance?: boolean): GetInputsExtractionJobRequest.AsObject;
|
|
8315
|
+
static toObject(includeInstance: boolean, msg: GetInputsExtractionJobRequest): GetInputsExtractionJobRequest.AsObject;
|
|
8316
|
+
static serializeBinaryToWriter(message: GetInputsExtractionJobRequest, writer: jspb.BinaryWriter): void;
|
|
8317
|
+
static deserializeBinary(bytes: Uint8Array): GetInputsExtractionJobRequest;
|
|
8318
|
+
static deserializeBinaryFromReader(message: GetInputsExtractionJobRequest, reader: jspb.BinaryReader): GetInputsExtractionJobRequest;
|
|
8319
|
+
}
|
|
8320
|
+
|
|
8321
|
+
export namespace GetInputsExtractionJobRequest {
|
|
8322
|
+
export type AsObject = {
|
|
8323
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
8324
|
+
inputsExtractionJobId: string,
|
|
8325
|
+
}
|
|
8326
|
+
}
|
|
8327
|
+
|
|
8328
|
+
export class ListInputsExtractionJobsRequest extends jspb.Message {
|
|
8329
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
8330
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): ListInputsExtractionJobsRequest;
|
|
8331
|
+
hasUserAppId(): boolean;
|
|
8332
|
+
clearUserAppId(): ListInputsExtractionJobsRequest;
|
|
8333
|
+
|
|
8334
|
+
getPage(): number;
|
|
8335
|
+
setPage(value: number): ListInputsExtractionJobsRequest;
|
|
8336
|
+
|
|
8337
|
+
getPerPage(): number;
|
|
8338
|
+
setPerPage(value: number): ListInputsExtractionJobsRequest;
|
|
8339
|
+
|
|
8340
|
+
serializeBinary(): Uint8Array;
|
|
8341
|
+
toObject(includeInstance?: boolean): ListInputsExtractionJobsRequest.AsObject;
|
|
8342
|
+
static toObject(includeInstance: boolean, msg: ListInputsExtractionJobsRequest): ListInputsExtractionJobsRequest.AsObject;
|
|
8343
|
+
static serializeBinaryToWriter(message: ListInputsExtractionJobsRequest, writer: jspb.BinaryWriter): void;
|
|
8344
|
+
static deserializeBinary(bytes: Uint8Array): ListInputsExtractionJobsRequest;
|
|
8345
|
+
static deserializeBinaryFromReader(message: ListInputsExtractionJobsRequest, reader: jspb.BinaryReader): ListInputsExtractionJobsRequest;
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
export namespace ListInputsExtractionJobsRequest {
|
|
8349
|
+
export type AsObject = {
|
|
8350
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
8351
|
+
page: number,
|
|
8352
|
+
perPage: number,
|
|
8353
|
+
}
|
|
8354
|
+
}
|
|
8355
|
+
|
|
8356
|
+
export class SingleInputsExtractionJobResponse extends jspb.Message {
|
|
8357
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
8358
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleInputsExtractionJobResponse;
|
|
8359
|
+
hasStatus(): boolean;
|
|
8360
|
+
clearStatus(): SingleInputsExtractionJobResponse;
|
|
8361
|
+
|
|
8362
|
+
getInputsExtractionJob(): proto_clarifai_api_resources_pb.InputsExtractionJob | undefined;
|
|
8363
|
+
setInputsExtractionJob(value?: proto_clarifai_api_resources_pb.InputsExtractionJob): SingleInputsExtractionJobResponse;
|
|
8364
|
+
hasInputsExtractionJob(): boolean;
|
|
8365
|
+
clearInputsExtractionJob(): SingleInputsExtractionJobResponse;
|
|
8366
|
+
|
|
8367
|
+
serializeBinary(): Uint8Array;
|
|
8368
|
+
toObject(includeInstance?: boolean): SingleInputsExtractionJobResponse.AsObject;
|
|
8369
|
+
static toObject(includeInstance: boolean, msg: SingleInputsExtractionJobResponse): SingleInputsExtractionJobResponse.AsObject;
|
|
8370
|
+
static serializeBinaryToWriter(message: SingleInputsExtractionJobResponse, writer: jspb.BinaryWriter): void;
|
|
8371
|
+
static deserializeBinary(bytes: Uint8Array): SingleInputsExtractionJobResponse;
|
|
8372
|
+
static deserializeBinaryFromReader(message: SingleInputsExtractionJobResponse, reader: jspb.BinaryReader): SingleInputsExtractionJobResponse;
|
|
8373
|
+
}
|
|
8374
|
+
|
|
8375
|
+
export namespace SingleInputsExtractionJobResponse {
|
|
8376
|
+
export type AsObject = {
|
|
8377
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
8378
|
+
inputsExtractionJob?: proto_clarifai_api_resources_pb.InputsExtractionJob.AsObject,
|
|
8379
|
+
}
|
|
8380
|
+
}
|
|
8381
|
+
|
|
8382
|
+
export class MultiInputsExtractionJobResponse extends jspb.Message {
|
|
8383
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
8384
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): MultiInputsExtractionJobResponse;
|
|
8385
|
+
hasStatus(): boolean;
|
|
8386
|
+
clearStatus(): MultiInputsExtractionJobResponse;
|
|
8387
|
+
|
|
8388
|
+
getInputsExtractionJobsList(): Array<proto_clarifai_api_resources_pb.InputsExtractionJob>;
|
|
8389
|
+
setInputsExtractionJobsList(value: Array<proto_clarifai_api_resources_pb.InputsExtractionJob>): MultiInputsExtractionJobResponse;
|
|
8390
|
+
clearInputsExtractionJobsList(): MultiInputsExtractionJobResponse;
|
|
8391
|
+
addInputsExtractionJobs(value?: proto_clarifai_api_resources_pb.InputsExtractionJob, index?: number): proto_clarifai_api_resources_pb.InputsExtractionJob;
|
|
8392
|
+
|
|
8393
|
+
serializeBinary(): Uint8Array;
|
|
8394
|
+
toObject(includeInstance?: boolean): MultiInputsExtractionJobResponse.AsObject;
|
|
8395
|
+
static toObject(includeInstance: boolean, msg: MultiInputsExtractionJobResponse): MultiInputsExtractionJobResponse.AsObject;
|
|
8396
|
+
static serializeBinaryToWriter(message: MultiInputsExtractionJobResponse, writer: jspb.BinaryWriter): void;
|
|
8397
|
+
static deserializeBinary(bytes: Uint8Array): MultiInputsExtractionJobResponse;
|
|
8398
|
+
static deserializeBinaryFromReader(message: MultiInputsExtractionJobResponse, reader: jspb.BinaryReader): MultiInputsExtractionJobResponse;
|
|
8399
|
+
}
|
|
8400
|
+
|
|
8401
|
+
export namespace MultiInputsExtractionJobResponse {
|
|
8402
|
+
export type AsObject = {
|
|
8403
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
8404
|
+
inputsExtractionJobsList: Array<proto_clarifai_api_resources_pb.InputsExtractionJob.AsObject>,
|
|
8405
|
+
}
|
|
8406
|
+
}
|
|
8407
|
+
|
|
8266
8408
|
export enum OrganizationInvitationStatus {
|
|
8267
8409
|
NOT_SET = 0,
|
|
8268
8410
|
PENDING = 1,
|