clarifai-web-grpc 11.10.9 → 11.11.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.
@@ -208,6 +208,12 @@ proto.clarifai.api.status.StatusCode = {
208
208
  PIPELINE_DOES_NOT_EXIST: 26300,
209
209
  PIPELINE_INVALID_ARGUMENT: 26301,
210
210
  PIPELINE_INVALID_REQUEST: 26302,
211
+ ARTIFACT_DOES_NOT_EXIST: 26400,
212
+ ARTIFACT_INVALID_ARGUMENT: 26401,
213
+ ARTIFACT_INVALID_REQUEST: 26402,
214
+ ARTIFACT_VERSION_DOES_NOT_EXIST: 26403,
215
+ ARTIFACT_VERSION_INVALID_ARGUMENT: 26404,
216
+ ARTIFACT_VERSION_INVALID_REQUEST: 26405,
211
217
  INPUT_SUCCESS: 30000,
212
218
  INPUT_PENDING: 30001,
213
219
  INPUT_FAILED: 30002,
@@ -420,6 +426,12 @@ proto.clarifai.api.status.StatusCode = {
420
426
  BILLING_INVALID_INFO: 69000,
421
427
  BILLING_MISSING_TOKENS: 69001,
422
428
  LOG_ENTRIES_INVALID_REQUEST: 70000,
429
+ TWILIO_UNCATEGORIZED_ERROR: 71001,
430
+ TWILIO_INVALID_ARGUMENT: 71002,
431
+ TWILIO_MAX_VERIFICATION_BEGIN_EXCEEDED: 71003,
432
+ TWILIO_MAX_VERIFICATION_CHECK_EXCEEDED: 71004,
433
+ TWILIO_RESOURCE_NOT_FOUND: 71005,
434
+ TWILIO_CLIENT_NOT_INITIALIZED: 71006,
423
435
  INTERNAL_SERVER_ISSUE: 98004,
424
436
  INTERNAL_FETCHING_ISSUE: 98005,
425
437
  INTERNAL_DATABASE_ISSUE: 98006,
@@ -334,7 +334,11 @@ proto.clarifai.auth.scope.S = {
334
334
  USERMETRICS_GET: 163,
335
335
  ANNOTATIONTRACKS_GET: 166,
336
336
  ANNOTATIONTRACKS_ADD: 167,
337
- ANNOTATIONTRACKS_DELETE: 168
337
+ ANNOTATIONTRACKS_DELETE: 168,
338
+ PIPELINESTEPS_DELETE: 169,
339
+ ARTIFACTS_GET: 170,
340
+ ARTIFACTS_ADD: 171,
341
+ ARTIFACTS_DELETE: 172
338
342
  };
339
343
  /**
340
344
  * A tuple of {field number, class constructor} for the extension
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clarifai-web-grpc",
3
- "version": "11.10.9",
3
+ "version": "11.11.0",
4
4
  "description": "The official Clarifai gRPC-web client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -3860,6 +3860,9 @@ export class BuildInfo extends jspb.Message {
3860
3860
  getDockerImageDigest(): string;
3861
3861
  setDockerImageDigest(value: string): BuildInfo;
3862
3862
 
3863
+ getPlatform(): string;
3864
+ setPlatform(value: string): BuildInfo;
3865
+
3863
3866
  serializeBinary(): Uint8Array;
3864
3867
  toObject(includeInstance?: boolean): BuildInfo.AsObject;
3865
3868
  static toObject(includeInstance: boolean, msg: BuildInfo): BuildInfo.AsObject;
@@ -3873,6 +3876,7 @@ export namespace BuildInfo {
3873
3876
  dockerImageName: string,
3874
3877
  dockerImageTag: string,
3875
3878
  dockerImageDigest: string,
3879
+ platform: string,
3876
3880
  }
3877
3881
  }
3878
3882
 
@@ -8738,6 +8742,9 @@ export class InstanceType extends jspb.Message {
8738
8742
  clearSpecialHandlingList(): InstanceType;
8739
8743
  addSpecialHandling(value?: SpecialHandling, index?: number): SpecialHandling;
8740
8744
 
8745
+ getArchitecture(): string;
8746
+ setArchitecture(value: string): InstanceType;
8747
+
8741
8748
  serializeBinary(): Uint8Array;
8742
8749
  toObject(includeInstance?: boolean): InstanceType.AsObject;
8743
8750
  static toObject(includeInstance: boolean, msg: InstanceType): InstanceType.AsObject;
@@ -8757,6 +8764,7 @@ export namespace InstanceType {
8757
8764
  allowedCapacityTypes?: NodeCapacityType.AsObject,
8758
8765
  featureFlagGroup: string,
8759
8766
  specialHandlingList: Array<SpecialHandling.AsObject>,
8767
+ architecture: string,
8760
8768
  }
8761
8769
  }
8762
8770
 
@@ -10892,6 +10900,120 @@ export namespace MetricTypeLabels {
10892
10900
 
10893
10901
  }
10894
10902
 
10903
+ export class Artifact extends jspb.Message {
10904
+ getId(): string;
10905
+ setId(value: string): Artifact;
10906
+
10907
+ getUserId(): string;
10908
+ setUserId(value: string): Artifact;
10909
+
10910
+ getAppId(): string;
10911
+ setAppId(value: string): Artifact;
10912
+
10913
+ getArtifactVersion(): ArtifactVersion | undefined;
10914
+ setArtifactVersion(value?: ArtifactVersion): Artifact;
10915
+ hasArtifactVersion(): boolean;
10916
+ clearArtifactVersion(): Artifact;
10917
+
10918
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10919
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): Artifact;
10920
+ hasCreatedAt(): boolean;
10921
+ clearCreatedAt(): Artifact;
10922
+
10923
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10924
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): Artifact;
10925
+ hasModifiedAt(): boolean;
10926
+ clearModifiedAt(): Artifact;
10927
+
10928
+ getDeletedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10929
+ setDeletedAt(value?: google_protobuf_timestamp_pb.Timestamp): Artifact;
10930
+ hasDeletedAt(): boolean;
10931
+ clearDeletedAt(): Artifact;
10932
+
10933
+ serializeBinary(): Uint8Array;
10934
+ toObject(includeInstance?: boolean): Artifact.AsObject;
10935
+ static toObject(includeInstance: boolean, msg: Artifact): Artifact.AsObject;
10936
+ static serializeBinaryToWriter(message: Artifact, writer: jspb.BinaryWriter): void;
10937
+ static deserializeBinary(bytes: Uint8Array): Artifact;
10938
+ static deserializeBinaryFromReader(message: Artifact, reader: jspb.BinaryReader): Artifact;
10939
+ }
10940
+
10941
+ export namespace Artifact {
10942
+ export type AsObject = {
10943
+ id: string,
10944
+ userId: string,
10945
+ appId: string,
10946
+ artifactVersion?: ArtifactVersion.AsObject,
10947
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
10948
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
10949
+ deletedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
10950
+ }
10951
+ }
10952
+
10953
+ export class ArtifactVersion extends jspb.Message {
10954
+ getId(): string;
10955
+ setId(value: string): ArtifactVersion;
10956
+
10957
+ getDescription(): string;
10958
+ setDescription(value: string): ArtifactVersion;
10959
+
10960
+ getArtifact(): Artifact | undefined;
10961
+ setArtifact(value?: Artifact): ArtifactVersion;
10962
+ hasArtifact(): boolean;
10963
+ clearArtifact(): ArtifactVersion;
10964
+
10965
+ getUpload(): Upload | undefined;
10966
+ setUpload(value?: Upload): ArtifactVersion;
10967
+ hasUpload(): boolean;
10968
+ clearUpload(): ArtifactVersion;
10969
+
10970
+ getVisibility(): Visibility | undefined;
10971
+ setVisibility(value?: Visibility): ArtifactVersion;
10972
+ hasVisibility(): boolean;
10973
+ clearVisibility(): ArtifactVersion;
10974
+
10975
+ getExpiresAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10976
+ setExpiresAt(value?: google_protobuf_timestamp_pb.Timestamp): ArtifactVersion;
10977
+ hasExpiresAt(): boolean;
10978
+ clearExpiresAt(): ArtifactVersion;
10979
+
10980
+ getCreatedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10981
+ setCreatedAt(value?: google_protobuf_timestamp_pb.Timestamp): ArtifactVersion;
10982
+ hasCreatedAt(): boolean;
10983
+ clearCreatedAt(): ArtifactVersion;
10984
+
10985
+ getModifiedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10986
+ setModifiedAt(value?: google_protobuf_timestamp_pb.Timestamp): ArtifactVersion;
10987
+ hasModifiedAt(): boolean;
10988
+ clearModifiedAt(): ArtifactVersion;
10989
+
10990
+ getDeletedAt(): google_protobuf_timestamp_pb.Timestamp | undefined;
10991
+ setDeletedAt(value?: google_protobuf_timestamp_pb.Timestamp): ArtifactVersion;
10992
+ hasDeletedAt(): boolean;
10993
+ clearDeletedAt(): ArtifactVersion;
10994
+
10995
+ serializeBinary(): Uint8Array;
10996
+ toObject(includeInstance?: boolean): ArtifactVersion.AsObject;
10997
+ static toObject(includeInstance: boolean, msg: ArtifactVersion): ArtifactVersion.AsObject;
10998
+ static serializeBinaryToWriter(message: ArtifactVersion, writer: jspb.BinaryWriter): void;
10999
+ static deserializeBinary(bytes: Uint8Array): ArtifactVersion;
11000
+ static deserializeBinaryFromReader(message: ArtifactVersion, reader: jspb.BinaryReader): ArtifactVersion;
11001
+ }
11002
+
11003
+ export namespace ArtifactVersion {
11004
+ export type AsObject = {
11005
+ id: string,
11006
+ description: string,
11007
+ artifact?: Artifact.AsObject,
11008
+ upload?: Upload.AsObject,
11009
+ visibility?: Visibility.AsObject,
11010
+ expiresAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
11011
+ createdAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
11012
+ modifiedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
11013
+ deletedAt?: google_protobuf_timestamp_pb.Timestamp.AsObject,
11014
+ }
11015
+ }
11016
+
10895
11017
  export enum WorkflowModelUseCase {
10896
11018
  WORKFLOW_MODEL_USE_CASE_NOT_SET = 0,
10897
11019
  CLASSIFICATION = 1,
@@ -10933,6 +11055,7 @@ export enum DeployRestriction {
10933
11055
  NO_LIMITS = 1,
10934
11056
  SHARED_COMPUTE_ONLY = 2,
10935
11057
  DEDICATED_COMPUTE_ONLY = 3,
11058
+ MODEL_OWNER_DEDICATED_COMPUTE_ONLY = 4,
10936
11059
  }
10937
11060
  export enum DataType {
10938
11061
  UNDEFINED = 0,