clarifai-web-grpc 11.6.6 → 11.7.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 +2364 -255
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +168 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +1218 -29
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +8 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +2364 -255
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +168 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +1218 -29
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +8 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +349 -13
- package/proto/clarifai/api/resources_pb.js +2981 -394
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +48 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +244 -0
- package/proto/clarifai/api/service_pb.d.ts +180 -8
- package/proto/clarifai/api/service_pb.js +1781 -301
- package/proto/clarifai/api/status/status_code_pb.d.ts +8 -0
- package/proto/clarifai/api/status/status_code_pb.js +8 -0
|
@@ -132,6 +132,11 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
132
132
|
ANNOTATION_MODIFY_SUCCESS: 24250,
|
|
133
133
|
ANNOTATION_MODIFY_PENDING: 24251,
|
|
134
134
|
ANNOTATION_MODIFY_FAILED: 24252,
|
|
135
|
+
ANNOTATION_TRACK_IDLE: 24300,
|
|
136
|
+
ANNOTATION_TRACK_IN_PROGRESS: 24301,
|
|
137
|
+
ANNOTATION_TRACK_PENDING: 24302,
|
|
138
|
+
ANNOTATION_TRACK_APPROVED: 24303,
|
|
139
|
+
ANNOTATION_TRACK_FAILED: 24304,
|
|
135
140
|
METADATA_INVALID_PATCH_ARGUMENTS: 24900,
|
|
136
141
|
METADATA_PARSING_ISSUE: 24901,
|
|
137
142
|
METADATA_MANIPULATION_ISSUE: 24902,
|
|
@@ -199,6 +204,9 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
199
204
|
PIPELINE_STEP_BUILD_UNEXPECTED_ERROR: 26207,
|
|
200
205
|
PIPELINE_STEP_READY: 26208,
|
|
201
206
|
PIPELINE_STEP_NOT_READY: 26209,
|
|
207
|
+
PIPELINE_DOES_NOT_EXIST: 26300,
|
|
208
|
+
PIPELINE_INVALID_ARGUMENT: 26301,
|
|
209
|
+
PIPELINE_INVALID_REQUEST: 26302,
|
|
202
210
|
INPUT_SUCCESS: 30000,
|
|
203
211
|
INPUT_PENDING: 30001,
|
|
204
212
|
INPUT_FAILED: 30002,
|