clarifai-web-grpc 11.10.9 → 11.10.10
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 +793 -2
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +416 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +3437 -0
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +5 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +793 -2
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +416 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +3437 -0
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +6 -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 +122 -0
- package/proto/clarifai/api/resources_pb.js +1017 -2
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +118 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +605 -0
- package/proto/clarifai/api/service_pb.d.ts +504 -0
- package/proto/clarifai/api/service_pb.js +4235 -0
- package/proto/clarifai/api/status/status_code_pb.d.ts +6 -0
- package/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/proto/clarifai/auth/scope/scope_pb.d.ts +4 -0
- package/proto/clarifai/auth/scope/scope_pb.js +5 -1
|
@@ -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,
|
|
@@ -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
|