@kipicore/dbcore 1.1.321 → 1.1.323
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.
|
@@ -1331,3 +1331,9 @@ export declare enum APP_ANALYTICS_EVENT_ERROR_MESSAGES {
|
|
|
1331
1331
|
UPDATE_FAIL = "Unable to update data!",
|
|
1332
1332
|
DELETE_FAIL = "Unable to delete data!"
|
|
1333
1333
|
}
|
|
1334
|
+
export declare enum INTERNAL_MARK_ERROR_MESSAGES {
|
|
1335
|
+
NOT_FOUND = "Internal mark not found!",
|
|
1336
|
+
ALREADY_EXISTS = "Internal mark already exists!",
|
|
1337
|
+
NOT_AUTHORIZED = "You are not authorized to perform this action!",
|
|
1338
|
+
INVALID_DATA = "Invalid internal mark data provided!"
|
|
1339
|
+
}
|
|
@@ -928,3 +928,9 @@ export declare enum APP_ANALYTICS_EVENT_SUCCESS_MESSAGES {
|
|
|
928
928
|
UPDATE_SUCCESS = "Data updated successfully",
|
|
929
929
|
DELETE_SUCCESS = "Data deleted successfully"
|
|
930
930
|
}
|
|
931
|
+
export declare enum INTERNAL_MARK_SUCCESS_MESSAGES {
|
|
932
|
+
CREATE_SUCCESS = "Internal mark created successfully!",
|
|
933
|
+
GET_SUCCESS = "Internal mark retrieved successfully!",
|
|
934
|
+
UPDATE_SUCCESS = "Internal mark updated successfully!",
|
|
935
|
+
UPSERT_SUCCESS = "Internal marks upserted successfully!"
|
|
936
|
+
}
|
package/package.json
CHANGED