clarifai-web-grpc 11.2.2 → 11.2.4
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 +504 -6
- package/dist/cjs/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +504 -6
- package/dist/esm/proto/clarifai/api/status/status_code_pb.js +1 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +93 -0
- package/proto/clarifai/api/resources_pb.js +642 -6
- package/proto/clarifai/api/status/status_code_pb.d.ts +1 -0
- package/proto/clarifai/api/status/status_code_pb.js +1 -0
|
@@ -339,6 +339,7 @@ export enum StatusCode {
|
|
|
339
339
|
FEATUREFLAG_CONFIG_NOT_FOUND = 62000,
|
|
340
340
|
FEATUREFLAG_INVALID_ARGUMENT = 62001,
|
|
341
341
|
FEATUREFLAG_BLOCKED = 62002,
|
|
342
|
+
FEATUREFLAG_NOT_FOUND = 62003,
|
|
342
343
|
MAINTENANCE_SUCCESS = 63000,
|
|
343
344
|
MAINTENANCE_FAILED = 63001,
|
|
344
345
|
DATASET_VERSION_PENDING = 64005,
|
|
@@ -362,6 +362,7 @@ proto.clarifai.api.status.StatusCode = {
|
|
|
362
362
|
FEATUREFLAG_CONFIG_NOT_FOUND: 62000,
|
|
363
363
|
FEATUREFLAG_INVALID_ARGUMENT: 62001,
|
|
364
364
|
FEATUREFLAG_BLOCKED: 62002,
|
|
365
|
+
FEATUREFLAG_NOT_FOUND: 62003,
|
|
365
366
|
MAINTENANCE_SUCCESS: 63000,
|
|
366
367
|
MAINTENANCE_FAILED: 63001,
|
|
367
368
|
DATASET_VERSION_PENDING: 64005,
|