clarifai-web-grpc 10.3.3 → 10.4.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 +1181 -121
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +210 -0
- package/dist/cjs/proto/clarifai/api/service_pb.js +1341 -1
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/dist/cjs/proto/clarifai/auth/scope/scope_pb.js +4 -1
- package/dist/esm/proto/clarifai/api/resources_pb.js +1181 -121
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +210 -0
- package/dist/esm/proto/clarifai/api/service_pb.js +1341 -1
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +6 -0
- package/dist/esm/proto/clarifai/auth/scope/scope_pb.js +4 -1
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +191 -36
- package/proto/clarifai/api/resources_pb.js +1461 -126
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +60 -0
- package/proto/clarifai/api/service_grpc_web_pb.js +305 -0
- package/proto/clarifai/api/service_pb.d.ts +190 -0
- package/proto/clarifai/api/service_pb.js +1649 -1
- 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 +3 -0
- package/proto/clarifai/auth/scope/scope_pb.js +4 -1
|
@@ -55,6 +55,9 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
55
55
|
MODEL_UPLOADING: 21104,
|
|
56
56
|
MODEL_UPLOADING_FAILED: 21105,
|
|
57
57
|
MODEL_TRAINING_FAILED: 21106,
|
|
58
|
+
MODEL_BUILDING: 21107,
|
|
59
|
+
MODEL_BUILDING_FAILED: 21108,
|
|
60
|
+
MODEL_BUILD_UNEXPECTED_ERROR: 21109,
|
|
58
61
|
MODEL_TRAINING_NO_DATA: 21110,
|
|
59
62
|
MODEL_TRAINING_NO_POSITIVES: 21111,
|
|
60
63
|
MODEL_TRAINING_ONE_VS_N_SINGLE_CLASS: 21112,
|
|
@@ -169,6 +172,9 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
169
172
|
RUNNER_STREAM_END: 25606,
|
|
170
173
|
RUNNER_ITEM_CANCELLED: 25607,
|
|
171
174
|
RUNNER_PROCESSING_FAILED: 25608,
|
|
175
|
+
NODEPOOL_DOES_NOT_EXIST: 25700,
|
|
176
|
+
NODEPOOL_INVALID_ARGUMENT: 25701,
|
|
177
|
+
NODEPOOL_INVALID_REQUEST: 25702,
|
|
172
178
|
INPUT_DOWNLOAD_SUCCESS: 30000,
|
|
173
179
|
INPUT_DOWNLOAD_PENDING: 30001,
|
|
174
180
|
INPUT_DOWNLOAD_FAILED: 30002,
|
|
@@ -307,7 +307,10 @@ proto.clarifai.auth.scope.S = {
|
|
|
307
307
|
RUNNERS_ADD: 132,
|
|
308
308
|
RUNNERS_DELETE: 133,
|
|
309
309
|
RUNNERITEMS_GET: 134,
|
|
310
|
-
RUNNERITEMS_ADD: 135
|
|
310
|
+
RUNNERITEMS_ADD: 135,
|
|
311
|
+
NODEPOOLS_GET: 136,
|
|
312
|
+
NODEPOOLS_ADD: 137,
|
|
313
|
+
NODEPOOLS_DELETE: 138
|
|
311
314
|
};
|
|
312
315
|
/**
|
|
313
316
|
* A tuple of {field number, class constructor} for the extension
|