clarifai-web-grpc 10.8.4 → 10.8.6
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 +112 -419
- package/dist/cjs/proto/clarifai/api/service_grpc_web_pb.js +6 -48
- package/dist/cjs/proto/clarifai/api/service_pb.js +42 -551
- package/dist/cjs/proto/clarifai/api/utils/extensions_pb.js +12 -0
- package/dist/esm/proto/clarifai/api/resources_pb.js +112 -419
- package/dist/esm/proto/clarifai/api/service_grpc_web_pb.js +6 -48
- package/dist/esm/proto/clarifai/api/service_pb.js +42 -551
- package/dist/esm/proto/clarifai/api/utils/extensions_pb.js +12 -0
- package/package.json +1 -1
- package/proto/clarifai/api/resources_pb.d.ts +23 -58
- package/proto/clarifai/api/resources_pb.js +146 -520
- package/proto/clarifai/api/service_grpc_web_pb.d.ts +3 -15
- package/proto/clarifai/api/service_grpc_web_pb.js +6 -67
- package/proto/clarifai/api/service_pb.d.ts +16 -90
- package/proto/clarifai/api/service_pb.js +42 -681
- package/proto/clarifai/api/utils/extensions_pb.js +26 -0
|
@@ -24,6 +24,7 @@ goog.object.extend(proto, google_protobuf_descriptor_pb);
|
|
|
24
24
|
goog.exportSymbol('proto.clarifai.api.utils.clDefaultFloat', null, global);
|
|
25
25
|
goog.exportSymbol('proto.clarifai.api.utils.clMoretags', null, global);
|
|
26
26
|
goog.exportSymbol('proto.clarifai.api.utils.clShowIfEmpty', null, global);
|
|
27
|
+
goog.exportSymbol('proto.clarifai.api.utils.description', null, global);
|
|
27
28
|
/**
|
|
28
29
|
* A tuple of {field number, class constructor} for the extension
|
|
29
30
|
* field named `clShowIfEmpty`.
|
|
@@ -57,4 +58,15 @@ google_protobuf_descriptor_pb.FieldOptions.extensionsBinary[50010] = new jspb.Ex
|
|
|
57
58
|
// This registers the extension field with the extended class, so that
|
|
58
59
|
// toObject() will function correctly.
|
|
59
60
|
google_protobuf_descriptor_pb.FieldOptions.extensions[50010] = proto.clarifai.api.utils.clDefaultFloat;
|
|
61
|
+
/**
|
|
62
|
+
* A tuple of {field number, class constructor} for the extension
|
|
63
|
+
* field named `description`.
|
|
64
|
+
* @type {!jspb.ExtensionFieldInfo<string>}
|
|
65
|
+
*/
|
|
66
|
+
proto.clarifai.api.utils.description = new jspb.ExtensionFieldInfo(1000, { description: 0 }, null,
|
|
67
|
+
/** @type {?function((boolean|undefined),!jspb.Message=): !Object} */ (null), 0);
|
|
68
|
+
google_protobuf_descriptor_pb.EnumValueOptions.extensionsBinary[1000] = new jspb.ExtensionFieldBinaryInfo(proto.clarifai.api.utils.description, jspb.BinaryReader.prototype.readString, jspb.BinaryWriter.prototype.writeString, undefined, undefined, false);
|
|
69
|
+
// This registers the extension field with the extended class, so that
|
|
70
|
+
// toObject() will function correctly.
|
|
71
|
+
google_protobuf_descriptor_pb.EnumValueOptions.extensions[1000] = proto.clarifai.api.utils.description;
|
|
60
72
|
goog.object.extend(exports, proto.clarifai.api.utils);
|