clarifai-web-grpc 11.3.3 → 11.4.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 +156 -3
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +84 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +864 -4
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +14 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +4 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +156 -3
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +84 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +864 -4
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +14 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +4 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +26 -0
- package/proto/clarifai/api/resources_pb.js +204 -3
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +24 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +122 -0
- package/proto/clarifai/api/service_pb.d.ts +132 -0
- package/proto/clarifai/api/service_pb.js +1087 -4
- package/proto/clarifai/api/status/status_code_pb.d.ts +14 -0
- package/proto/clarifai/api/status/status_code_pb.js +14 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +3 -0
- package/proto/clarifai/auth/scope/scope_pb.js +4 -1
|
@@ -3051,6 +3051,9 @@ export class PostModelOutputsRequest extends jspb.Message {
|
|
|
3051
3051
|
getUsePredictCache(): boolean;
|
|
3052
3052
|
setUsePredictCache(value: boolean): PostModelOutputsRequest;
|
|
3053
3053
|
|
|
3054
|
+
getEnableLogSummaryOnError(): boolean;
|
|
3055
|
+
setEnableLogSummaryOnError(value: boolean): PostModelOutputsRequest;
|
|
3056
|
+
|
|
3054
3057
|
serializeBinary(): Uint8Array;
|
|
3055
3058
|
toObject(includeInstance?: boolean): PostModelOutputsRequest.AsObject;
|
|
3056
3059
|
static toObject(includeInstance: boolean, msg: PostModelOutputsRequest): PostModelOutputsRequest.AsObject;
|
|
@@ -3068,6 +3071,7 @@ export namespace PostModelOutputsRequest {
|
|
|
3068
3071
|
model?: proto_clarifai_api_resources_pb.Model.AsObject,
|
|
3069
3072
|
runnerSelector?: proto_clarifai_api_resources_pb.RunnerSelector.AsObject,
|
|
3070
3073
|
usePredictCache: boolean,
|
|
3074
|
+
enableLogSummaryOnError: boolean,
|
|
3071
3075
|
}
|
|
3072
3076
|
}
|
|
3073
3077
|
|
|
@@ -3324,6 +3328,9 @@ export class ListKeysRequest extends jspb.Message {
|
|
|
3324
3328
|
clearEndpointsList(): ListKeysRequest;
|
|
3325
3329
|
addEndpoints(value: string, index?: number): ListKeysRequest;
|
|
3326
3330
|
|
|
3331
|
+
getType(): string;
|
|
3332
|
+
setType(value: string): ListKeysRequest;
|
|
3333
|
+
|
|
3327
3334
|
serializeBinary(): Uint8Array;
|
|
3328
3335
|
toObject(includeInstance?: boolean): ListKeysRequest.AsObject;
|
|
3329
3336
|
static toObject(includeInstance: boolean, msg: ListKeysRequest): ListKeysRequest.AsObject;
|
|
@@ -3340,6 +3347,7 @@ export namespace ListKeysRequest {
|
|
|
3340
3347
|
notExpired: boolean,
|
|
3341
3348
|
scopesList: Array<string>,
|
|
3342
3349
|
endpointsList: Array<string>,
|
|
3350
|
+
type: string,
|
|
3343
3351
|
}
|
|
3344
3352
|
}
|
|
3345
3353
|
|
|
@@ -5655,6 +5663,11 @@ export class MultiOutputResponse extends jspb.Message {
|
|
|
5655
5663
|
clearOutputsList(): MultiOutputResponse;
|
|
5656
5664
|
addOutputs(value?: proto_clarifai_api_resources_pb.Output, index?: number): proto_clarifai_api_resources_pb.Output;
|
|
5657
5665
|
|
|
5666
|
+
getRunnerSelector(): proto_clarifai_api_resources_pb.RunnerSelector | undefined;
|
|
5667
|
+
setRunnerSelector(value?: proto_clarifai_api_resources_pb.RunnerSelector): MultiOutputResponse;
|
|
5668
|
+
hasRunnerSelector(): boolean;
|
|
5669
|
+
clearRunnerSelector(): MultiOutputResponse;
|
|
5670
|
+
|
|
5658
5671
|
serializeBinary(): Uint8Array;
|
|
5659
5672
|
toObject(includeInstance?: boolean): MultiOutputResponse.AsObject;
|
|
5660
5673
|
static toObject(includeInstance: boolean, msg: MultiOutputResponse): MultiOutputResponse.AsObject;
|
|
@@ -5667,6 +5680,7 @@ export namespace MultiOutputResponse {
|
|
|
5667
5680
|
export type AsObject = {
|
|
5668
5681
|
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
5669
5682
|
outputsList: Array<proto_clarifai_api_resources_pb.Output.AsObject>,
|
|
5683
|
+
runnerSelector?: proto_clarifai_api_resources_pb.RunnerSelector.AsObject,
|
|
5670
5684
|
}
|
|
5671
5685
|
}
|
|
5672
5686
|
|
|
@@ -10961,6 +10975,9 @@ export class ListDeploymentsRequest extends jspb.Message {
|
|
|
10961
10975
|
clearWorkflowVersionIdsList(): ListDeploymentsRequest;
|
|
10962
10976
|
addWorkflowVersionIds(value: string, index?: number): ListDeploymentsRequest;
|
|
10963
10977
|
|
|
10978
|
+
getComputeClusterId(): string;
|
|
10979
|
+
setComputeClusterId(value: string): ListDeploymentsRequest;
|
|
10980
|
+
|
|
10964
10981
|
serializeBinary(): Uint8Array;
|
|
10965
10982
|
toObject(includeInstance?: boolean): ListDeploymentsRequest.AsObject;
|
|
10966
10983
|
static toObject(includeInstance: boolean, msg: ListDeploymentsRequest): ListDeploymentsRequest.AsObject;
|
|
@@ -10977,6 +10994,7 @@ export namespace ListDeploymentsRequest {
|
|
|
10977
10994
|
perPage: number,
|
|
10978
10995
|
modelVersionIdsList: Array<string>,
|
|
10979
10996
|
workflowVersionIdsList: Array<string>,
|
|
10997
|
+
computeClusterId: string,
|
|
10980
10998
|
}
|
|
10981
10999
|
}
|
|
10982
11000
|
|
|
@@ -11438,6 +11456,120 @@ export namespace PostModelMigrationRequest {
|
|
|
11438
11456
|
}
|
|
11439
11457
|
}
|
|
11440
11458
|
|
|
11459
|
+
export class MCPRequest extends jspb.Message {
|
|
11460
|
+
getJsonrpc(): string;
|
|
11461
|
+
setJsonrpc(value: string): MCPRequest;
|
|
11462
|
+
|
|
11463
|
+
getId(): number;
|
|
11464
|
+
setId(value: number): MCPRequest;
|
|
11465
|
+
|
|
11466
|
+
getMethod(): string;
|
|
11467
|
+
setMethod(value: string): MCPRequest;
|
|
11468
|
+
|
|
11469
|
+
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
11470
|
+
setParams(value?: google_protobuf_struct_pb.Struct): MCPRequest;
|
|
11471
|
+
hasParams(): boolean;
|
|
11472
|
+
clearParams(): MCPRequest;
|
|
11473
|
+
|
|
11474
|
+
getUserAppId(): proto_clarifai_api_resources_pb.UserAppIDSet | undefined;
|
|
11475
|
+
setUserAppId(value?: proto_clarifai_api_resources_pb.UserAppIDSet): MCPRequest;
|
|
11476
|
+
hasUserAppId(): boolean;
|
|
11477
|
+
clearUserAppId(): MCPRequest;
|
|
11478
|
+
|
|
11479
|
+
getModelId(): string;
|
|
11480
|
+
setModelId(value: string): MCPRequest;
|
|
11481
|
+
|
|
11482
|
+
getVersionId(): string;
|
|
11483
|
+
setVersionId(value: string): MCPRequest;
|
|
11484
|
+
|
|
11485
|
+
serializeBinary(): Uint8Array;
|
|
11486
|
+
toObject(includeInstance?: boolean): MCPRequest.AsObject;
|
|
11487
|
+
static toObject(includeInstance: boolean, msg: MCPRequest): MCPRequest.AsObject;
|
|
11488
|
+
static serializeBinaryToWriter(message: MCPRequest, writer: jspb.BinaryWriter): void;
|
|
11489
|
+
static deserializeBinary(bytes: Uint8Array): MCPRequest;
|
|
11490
|
+
static deserializeBinaryFromReader(message: MCPRequest, reader: jspb.BinaryReader): MCPRequest;
|
|
11491
|
+
}
|
|
11492
|
+
|
|
11493
|
+
export namespace MCPRequest {
|
|
11494
|
+
export type AsObject = {
|
|
11495
|
+
jsonrpc: string,
|
|
11496
|
+
id: number,
|
|
11497
|
+
method: string,
|
|
11498
|
+
params?: google_protobuf_struct_pb.Struct.AsObject,
|
|
11499
|
+
userAppId?: proto_clarifai_api_resources_pb.UserAppIDSet.AsObject,
|
|
11500
|
+
modelId: string,
|
|
11501
|
+
versionId: string,
|
|
11502
|
+
}
|
|
11503
|
+
}
|
|
11504
|
+
|
|
11505
|
+
export class MCPError extends jspb.Message {
|
|
11506
|
+
getCode(): number;
|
|
11507
|
+
setCode(value: number): MCPError;
|
|
11508
|
+
|
|
11509
|
+
getMessage(): string;
|
|
11510
|
+
setMessage(value: string): MCPError;
|
|
11511
|
+
|
|
11512
|
+
getData(): google_protobuf_struct_pb.Struct | undefined;
|
|
11513
|
+
setData(value?: google_protobuf_struct_pb.Struct): MCPError;
|
|
11514
|
+
hasData(): boolean;
|
|
11515
|
+
clearData(): MCPError;
|
|
11516
|
+
|
|
11517
|
+
serializeBinary(): Uint8Array;
|
|
11518
|
+
toObject(includeInstance?: boolean): MCPError.AsObject;
|
|
11519
|
+
static toObject(includeInstance: boolean, msg: MCPError): MCPError.AsObject;
|
|
11520
|
+
static serializeBinaryToWriter(message: MCPError, writer: jspb.BinaryWriter): void;
|
|
11521
|
+
static deserializeBinary(bytes: Uint8Array): MCPError;
|
|
11522
|
+
static deserializeBinaryFromReader(message: MCPError, reader: jspb.BinaryReader): MCPError;
|
|
11523
|
+
}
|
|
11524
|
+
|
|
11525
|
+
export namespace MCPError {
|
|
11526
|
+
export type AsObject = {
|
|
11527
|
+
code: number,
|
|
11528
|
+
message: string,
|
|
11529
|
+
data?: google_protobuf_struct_pb.Struct.AsObject,
|
|
11530
|
+
}
|
|
11531
|
+
}
|
|
11532
|
+
|
|
11533
|
+
export class SingleMCPResponse extends jspb.Message {
|
|
11534
|
+
getJsonrpc(): string;
|
|
11535
|
+
setJsonrpc(value: string): SingleMCPResponse;
|
|
11536
|
+
|
|
11537
|
+
getId(): number;
|
|
11538
|
+
setId(value: number): SingleMCPResponse;
|
|
11539
|
+
|
|
11540
|
+
getResult(): google_protobuf_struct_pb.Struct | undefined;
|
|
11541
|
+
setResult(value?: google_protobuf_struct_pb.Struct): SingleMCPResponse;
|
|
11542
|
+
hasResult(): boolean;
|
|
11543
|
+
clearResult(): SingleMCPResponse;
|
|
11544
|
+
|
|
11545
|
+
getError(): MCPError | undefined;
|
|
11546
|
+
setError(value?: MCPError): SingleMCPResponse;
|
|
11547
|
+
hasError(): boolean;
|
|
11548
|
+
clearError(): SingleMCPResponse;
|
|
11549
|
+
|
|
11550
|
+
getStatus(): proto_clarifai_api_status_status_pb.Status | undefined;
|
|
11551
|
+
setStatus(value?: proto_clarifai_api_status_status_pb.Status): SingleMCPResponse;
|
|
11552
|
+
hasStatus(): boolean;
|
|
11553
|
+
clearStatus(): SingleMCPResponse;
|
|
11554
|
+
|
|
11555
|
+
serializeBinary(): Uint8Array;
|
|
11556
|
+
toObject(includeInstance?: boolean): SingleMCPResponse.AsObject;
|
|
11557
|
+
static toObject(includeInstance: boolean, msg: SingleMCPResponse): SingleMCPResponse.AsObject;
|
|
11558
|
+
static serializeBinaryToWriter(message: SingleMCPResponse, writer: jspb.BinaryWriter): void;
|
|
11559
|
+
static deserializeBinary(bytes: Uint8Array): SingleMCPResponse;
|
|
11560
|
+
static deserializeBinaryFromReader(message: SingleMCPResponse, reader: jspb.BinaryReader): SingleMCPResponse;
|
|
11561
|
+
}
|
|
11562
|
+
|
|
11563
|
+
export namespace SingleMCPResponse {
|
|
11564
|
+
export type AsObject = {
|
|
11565
|
+
jsonrpc: string,
|
|
11566
|
+
id: number,
|
|
11567
|
+
result?: google_protobuf_struct_pb.Struct.AsObject,
|
|
11568
|
+
error?: MCPError.AsObject,
|
|
11569
|
+
status?: proto_clarifai_api_status_status_pb.Status.AsObject,
|
|
11570
|
+
}
|
|
11571
|
+
}
|
|
11572
|
+
|
|
11441
11573
|
export enum OrganizationInvitationStatus {
|
|
11442
11574
|
NOT_SET = 0,
|
|
11443
11575
|
PENDING = 1,
|