clarifai-web-grpc 11.8.1 → 11.8.3
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 +418 -11
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +418 -11
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +65 -0
- package/proto/clarifai/api/resources_pb.js +534 -11
- package/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/proto/clarifai/api/status/status_code_pb.js +1 -0
|
@@ -2626,6 +2626,9 @@ export class Key extends jspb.Message {
|
|
|
2626
2626
|
clearAuthorizedIdpIdsList(): Key;
|
|
2627
2627
|
addAuthorizedIdpIds(value: string, index?: number): Key;
|
|
2628
2628
|
|
|
2629
|
+
getOrganizationId(): string;
|
|
2630
|
+
setOrganizationId(value: string): Key;
|
|
2631
|
+
|
|
2629
2632
|
serializeBinary(): Uint8Array;
|
|
2630
2633
|
toObject(includeInstance?: boolean): Key.AsObject;
|
|
2631
2634
|
static toObject(includeInstance: boolean, msg: Key): Key.AsObject;
|
|
@@ -2645,6 +2648,7 @@ export namespace Key {
|
|
|
2645
2648
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2646
2649
|
expiresAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
2647
2650
|
authorizedIdpIdsList: Array<string>,
|
|
2651
|
+
organizationId: string,
|
|
2648
2652
|
}
|
|
2649
2653
|
}
|
|
2650
2654
|
|
|
@@ -2854,6 +2858,37 @@ export namespace Model {
|
|
|
2854
2858
|
}
|
|
2855
2859
|
}
|
|
2856
2860
|
|
|
2861
|
+
export class SpecialHandling extends jspb.Message {
|
|
2862
|
+
getId(): string;
|
|
2863
|
+
setId(value: string): SpecialHandling;
|
|
2864
|
+
|
|
2865
|
+
getReason(): SpecialHandling.Reason;
|
|
2866
|
+
setReason(value: SpecialHandling.Reason): SpecialHandling;
|
|
2867
|
+
|
|
2868
|
+
getDone(): boolean;
|
|
2869
|
+
setDone(value: boolean): SpecialHandling;
|
|
2870
|
+
|
|
2871
|
+
serializeBinary(): Uint8Array;
|
|
2872
|
+
toObject(includeInstance?: boolean): SpecialHandling.AsObject;
|
|
2873
|
+
static toObject(includeInstance: boolean, msg: SpecialHandling): SpecialHandling.AsObject;
|
|
2874
|
+
static serializeBinaryToWriter(message: SpecialHandling, writer: jspb.BinaryWriter): void;
|
|
2875
|
+
static deserializeBinary(bytes: Uint8Array): SpecialHandling;
|
|
2876
|
+
static deserializeBinaryFromReader(message: SpecialHandling, reader: jspb.BinaryReader): SpecialHandling;
|
|
2877
|
+
}
|
|
2878
|
+
|
|
2879
|
+
export namespace SpecialHandling {
|
|
2880
|
+
export type AsObject = {
|
|
2881
|
+
id: string,
|
|
2882
|
+
reason: SpecialHandling.Reason,
|
|
2883
|
+
done: boolean,
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
export enum Reason {
|
|
2887
|
+
REASON_NOT_SET = 0,
|
|
2888
|
+
CONTACT_SALES = 1,
|
|
2889
|
+
}
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2857
2892
|
export class OpenRouterInfo extends jspb.Message {
|
|
2858
2893
|
getParams(): google_protobuf_struct_pb.Struct | undefined;
|
|
2859
2894
|
setParams(value?: google_protobuf_struct_pb.Struct): OpenRouterInfo;
|
|
@@ -3685,6 +3720,11 @@ export class ModelVersion extends jspb.Message {
|
|
|
3685
3720
|
clearMethodSignaturesList(): ModelVersion;
|
|
3686
3721
|
addMethodSignatures(value?: MethodSignature, index?: number): MethodSignature;
|
|
3687
3722
|
|
|
3723
|
+
getSpecialHandlingList(): Array<SpecialHandling>;
|
|
3724
|
+
setSpecialHandlingList(value: Array<SpecialHandling>): ModelVersion;
|
|
3725
|
+
clearSpecialHandlingList(): ModelVersion;
|
|
3726
|
+
addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
|
|
3727
|
+
|
|
3688
3728
|
serializeBinary(): Uint8Array;
|
|
3689
3729
|
toObject(includeInstance?: boolean): ModelVersion.AsObject;
|
|
3690
3730
|
static toObject(includeInstance: boolean, msg: ModelVersion): ModelVersion.AsObject;
|
|
@@ -3718,6 +3758,7 @@ export namespace ModelVersion {
|
|
|
3718
3758
|
inferenceComputeInfo?: ComputeInfo.AsObject,
|
|
3719
3759
|
buildInfo?: BuildInfo.AsObject,
|
|
3720
3760
|
methodSignaturesList: Array<MethodSignature.AsObject>,
|
|
3761
|
+
specialHandlingList: Array<SpecialHandling.AsObject>,
|
|
3721
3762
|
}
|
|
3722
3763
|
}
|
|
3723
3764
|
|
|
@@ -8534,6 +8575,11 @@ export class Runner extends jspb.Message {
|
|
|
8534
8575
|
getNumReplicas(): number;
|
|
8535
8576
|
setNumReplicas(value: number): Runner;
|
|
8536
8577
|
|
|
8578
|
+
getSpecialHandlingList(): Array<SpecialHandling>;
|
|
8579
|
+
setSpecialHandlingList(value: Array<SpecialHandling>): Runner;
|
|
8580
|
+
clearSpecialHandlingList(): Runner;
|
|
8581
|
+
addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
|
|
8582
|
+
|
|
8537
8583
|
serializeBinary(): Uint8Array;
|
|
8538
8584
|
toObject(includeInstance?: boolean): Runner.AsObject;
|
|
8539
8585
|
static toObject(includeInstance: boolean, msg: Runner): Runner.AsObject;
|
|
@@ -8554,6 +8600,7 @@ export namespace Runner {
|
|
|
8554
8600
|
nodepool?: Nodepool.AsObject,
|
|
8555
8601
|
computeInfo?: ComputeInfo.AsObject,
|
|
8556
8602
|
numReplicas: number,
|
|
8603
|
+
specialHandlingList: Array<SpecialHandling.AsObject>,
|
|
8557
8604
|
}
|
|
8558
8605
|
}
|
|
8559
8606
|
|
|
@@ -8611,6 +8658,11 @@ export class Nodepool extends jspb.Message {
|
|
|
8611
8658
|
hasMetadata(): boolean;
|
|
8612
8659
|
clearMetadata(): Nodepool;
|
|
8613
8660
|
|
|
8661
|
+
getSpecialHandlingList(): Array<SpecialHandling>;
|
|
8662
|
+
setSpecialHandlingList(value: Array<SpecialHandling>): Nodepool;
|
|
8663
|
+
clearSpecialHandlingList(): Nodepool;
|
|
8664
|
+
addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
|
|
8665
|
+
|
|
8614
8666
|
serializeBinary(): Uint8Array;
|
|
8615
8667
|
toObject(includeInstance?: boolean): Nodepool.AsObject;
|
|
8616
8668
|
static toObject(includeInstance: boolean, msg: Nodepool): Nodepool.AsObject;
|
|
@@ -8634,6 +8686,7 @@ export namespace Nodepool {
|
|
|
8634
8686
|
enforcedMaxInstances: number,
|
|
8635
8687
|
visibility?: Visibility.AsObject,
|
|
8636
8688
|
metadata?: google_protobuf_struct_pb.Struct.AsObject,
|
|
8689
|
+
specialHandlingList: Array<SpecialHandling.AsObject>,
|
|
8637
8690
|
}
|
|
8638
8691
|
}
|
|
8639
8692
|
|
|
@@ -8694,6 +8747,11 @@ export class InstanceType extends jspb.Message {
|
|
|
8694
8747
|
getFeatureFlagGroup(): string;
|
|
8695
8748
|
setFeatureFlagGroup(value: string): InstanceType;
|
|
8696
8749
|
|
|
8750
|
+
getSpecialHandlingList(): Array<SpecialHandling>;
|
|
8751
|
+
setSpecialHandlingList(value: Array<SpecialHandling>): InstanceType;
|
|
8752
|
+
clearSpecialHandlingList(): InstanceType;
|
|
8753
|
+
addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
|
|
8754
|
+
|
|
8697
8755
|
serializeBinary(): Uint8Array;
|
|
8698
8756
|
toObject(includeInstance?: boolean): InstanceType.AsObject;
|
|
8699
8757
|
static toObject(includeInstance: boolean, msg: InstanceType): InstanceType.AsObject;
|
|
@@ -8712,6 +8770,7 @@ export namespace InstanceType {
|
|
|
8712
8770
|
region: string,
|
|
8713
8771
|
allowedCapacityTypes?: NodeCapacityType.AsObject,
|
|
8714
8772
|
featureFlagGroup: string,
|
|
8773
|
+
specialHandlingList: Array<SpecialHandling.AsObject>,
|
|
8715
8774
|
}
|
|
8716
8775
|
}
|
|
8717
8776
|
|
|
@@ -8948,6 +9007,11 @@ export class Deployment extends jspb.Message {
|
|
|
8948
9007
|
getDeployLatestVersion(): boolean;
|
|
8949
9008
|
setDeployLatestVersion(value: boolean): Deployment;
|
|
8950
9009
|
|
|
9010
|
+
getSpecialHandlingList(): Array<SpecialHandling>;
|
|
9011
|
+
setSpecialHandlingList(value: Array<SpecialHandling>): Deployment;
|
|
9012
|
+
clearSpecialHandlingList(): Deployment;
|
|
9013
|
+
addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
|
|
9014
|
+
|
|
8951
9015
|
serializeBinary(): Uint8Array;
|
|
8952
9016
|
toObject(includeInstance?: boolean): Deployment.AsObject;
|
|
8953
9017
|
static toObject(includeInstance: boolean, msg: Deployment): Deployment.AsObject;
|
|
@@ -8970,6 +9034,7 @@ export namespace Deployment {
|
|
|
8970
9034
|
createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
8971
9035
|
modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
|
|
8972
9036
|
deployLatestVersion: boolean,
|
|
9037
|
+
specialHandlingList: Array<SpecialHandling.AsObject>,
|
|
8973
9038
|
}
|
|
8974
9039
|
|
|
8975
9040
|
export enum SchedulingChoice {
|