You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Perceptual hashing allows you to construct a hash value that uniquely identifies an input image based on an image's contents. ImageKit.io metadata API returns the pHash value of an image in the response. You can use this value to find a duplicate (or similar) image by calculating the distance between the two images' pHash value.
Copy file name to clipboardExpand all lines: libs/constants/errorMessages.ts
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,5 +31,10 @@ export default {
31
31
//bulk delete errors
32
32
"INVALID_FILEIDS_VALUE": {message: "Invalid value for fileIds",help: "fileIds should be an array of fileId of the files. The array should have atleast one fileId."},
33
33
"BULK_ADD_TAGS_INVALID": {message: "Invalid value for tags",help: "tags should be a non empty array of string like ['tag1', 'tag2']."},
34
-
"BULK_AI_TAGS_INVALID": {message: "Invalid value for AITags",help: "AITags should be a non empty array of string like ['tag1', 'tag2']."}
34
+
"BULK_AI_TAGS_INVALID": {message: "Invalid value for AITags",help: "AITags should be a non empty array of string like ['tag1', 'tag2']."},
35
+
"CMF_NAME_MISSING": {message: "Missing name parameter for this request",help: ""},
36
+
"CMF_LABEL_MISSING": {message: "Missing label parameter for this request",help: ""},
37
+
"CMF_SCHEMA_MISSING": {message: "Missing schema parameter for this request",help: ""},
38
+
"CMF_SCHEMA_INVALID": {message: "Invalid value for schema",help: "schema should have a mandatory type field."},
39
+
"CMF_LABEL_SCHEMA_MISSING": {message: "Both label and schema is missing",help: ""},
0 commit comments