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.
- package/VERSION +1 -1
- package/dist/cjs/proto/clarifai/api/resources_pb.js +1638 -3
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +910 -70
- package/dist/cjs/proto/clarifai/api/service_pb.js +6855 -739
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +5 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +1638 -3
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +910 -70
- package/dist/esm/proto/clarifai/api/service_pb.js +6855 -739
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +5 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +252 -0
- package/proto/clarifai/api/resources_pb.js +2076 -3
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +240 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +1315 -95
- package/proto/clarifai/api/service_pb.d.ts +890 -8
- package/proto/clarifai/api/service_pb.js +8719 -1155
- package/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +4 -0
- package/proto/clarifai/auth/scope/scope_pb.js +5 -1
|
@@ -423,6 +423,7 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
423
423
|
INTERNAL_VECTORDB_UNCATEGORIZED: 98018,
|
|
424
424
|
INTERNAL_ORACLE_UNCATEGORIZED: 98019,
|
|
425
425
|
INTERNAL_VULTR_UNCATEGORIZED: 98020,
|
|
426
|
+
INTERNAL_GCP_UNCATEGORIZED: 98021,
|
|
426
427
|
CONN_UNCATEGORIZED: 99001,
|
|
427
428
|
MODEL_UNCATEGORIZED: 99002,
|
|
428
429
|
INPUT_UNCATEGORIZED: 99003,
|
|
@@ -324,9 +324,13 @@ proto.clarifai.auth.scope.S = {
|
|
|
324
324
|
WORKFLOWVERSIONEVALUATIONS_ADD: 153,
|
|
325
325
|
PIPELINES_GET: 154,
|
|
326
326
|
PIPELINES_ADD: 155,
|
|
327
|
+
PIPELINES_DELETE: 156,
|
|
327
328
|
PIPELINESTEPS_GET: 157,
|
|
328
329
|
PIPELINESTEPS_ADD: 158,
|
|
329
|
-
PIPELINESTEPS_PULL: 159
|
|
330
|
+
PIPELINESTEPS_PULL: 159,
|
|
331
|
+
SECRETS_GET: 160,
|
|
332
|
+
SECRETS_ADD: 161,
|
|
333
|
+
SECRETS_DELETE: 162
|
|
330
334
|
};
|
|
331
335
|
/**
|
|
332
336
|
* A tuple of {field number, class constructor} for the extension
|