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
|
@@ -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
|
|