clarifai-web-grpc 11.5.1 → 11.6.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.
@@ -402,6 +402,7 @@ export enum StatusCode {
402
402
  INTERNAL_VECTORDB_UNCATEGORIZED = 98018,
403
403
  INTERNAL_ORACLE_UNCATEGORIZED = 98019,
404
404
  INTERNAL_VULTR_UNCATEGORIZED = 98020,
405
+ INTERNAL_GCP_UNCATEGORIZED = 98021,
405
406
  CONN_UNCATEGORIZED = 99001,
406
407
  MODEL_UNCATEGORIZED = 99002,
407
408
  INPUT_UNCATEGORIZED = 99003,
@@ -425,6 +425,7 @@ proto.clarifai.api.status.StatusCode = {
425
425
  INTERNAL_VECTORDB_UNCATEGORIZED: 98018,
426
426
  INTERNAL_ORACLE_UNCATEGORIZED: 98019,
427
427
  INTERNAL_VULTR_UNCATEGORIZED: 98020,
428
+ INTERNAL_GCP_UNCATEGORIZED: 98021,
428
429
  CONN_UNCATEGORIZED: 99001,
429
430
  MODEL_UNCATEGORIZED: 99002,
430
431
  INPUT_UNCATEGORIZED: 99003,
@@ -136,7 +136,11 @@ export enum S {
136
136
  WORKFLOWVERSIONEVALUATIONS_ADD = 153,
137
137
  PIPELINES_GET = 154,
138
138
  PIPELINES_ADD = 155,
139
+ PIPELINES_DELETE = 156,
139
140
  PIPELINESTEPS_GET = 157,
140
141
  PIPELINESTEPS_ADD = 158,
141
142
  PIPELINESTEPS_PULL = 159,
143
+ SECRETS_GET = 160,
144
+ SECRETS_ADD = 161,
145
+ SECRETS_DELETE = 162,
142
146
  }
@@ -365,9 +365,13 @@ proto.clarifai.auth.scope.S = {
365
365
  WORKFLOWVERSIONEVALUATIONS_ADD: 153,
366
366
  PIPELINES_GET: 154,
367
367
  PIPELINES_ADD: 155,
368
+ PIPELINES_DELETE: 156,
368
369
  PIPELINESTEPS_GET: 157,
369
370
  PIPELINESTEPS_ADD: 158,
370
- PIPELINESTEPS_PULL: 159
371
+ PIPELINESTEPS_PULL: 159,
372
+ SECRETS_GET: 160,
373
+ SECRETS_ADD: 161,
374
+ SECRETS_DELETE: 162
371
375
  };
372
376
 
373
377