@optimiser/common 1.0.283 → 1.0.284
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/dist/lib/utility.d.ts +2 -1
- package/dist/lib/utility.js +3 -2
- package/package.json +1 -1
package/dist/lib/utility.d.ts
CHANGED
|
@@ -224,7 +224,8 @@ declare function GetMailFromString(fromUser: string): string;
|
|
|
224
224
|
/**
|
|
225
225
|
* TODO: Return On behalf String in Calendar Invitation mails
|
|
226
226
|
* @param fromUser From User Name
|
|
227
|
+
* @param fromEmail From User Email
|
|
227
228
|
* @returns string
|
|
228
229
|
*/
|
|
229
|
-
declare function InvitationMailReplyContent(fromUser: string): string;
|
|
230
|
+
declare function InvitationMailReplyContent(fromUser: string, fromEmail: string): string;
|
|
230
231
|
export { CheckForWhiteListedDomain, ReturnJsonResponse, ConvertFileByteSize, GetObjectByKeyValueFromList, IsEqualArrays, IsEqualValue, CheckUserProfileField, GetPageFieldData, GetPageObjectSchema, GetFieldDetail, UpdateRecentViewObject, UpdateRecentViewFields, SyncChildObjectData, SyncParentObjectData, DeleteFieldInOtherCollection, SyncFieldInSameCollection, SyncFieldInSameCollectionByObjectID, SyncFieldInSameCollectionByObjectIDWithPromise, SyncFieldInOtherCollection, SyncUserInOtherCollection, BuildLookupDataField, CheckDataBeforeAdd, CheckDataBeforeUpdate, BuildGridFieldProjection, BuildFieldProjection, BuildLookupFieldProjection, FilterConditions, GirdHeaderFilters, FieldsGridHeaderFilters, AddLog, CheckFilterFieldsProjection, VerifyEmailPassword, GetMyTeamUsers, ExtractChildUsersTree, GetMaxKeyValueListSchema, VerifyAWSEmailConfig, GenerateId, SyncUserDetailsWithMasterDB, SignoutUserFromAllDevices, SignoutUsersWithPromise, SignoutMultipleUsersFromAllDevices, UserLicenseConsumeCalculate, sendMailWithUserAccount, GetEmailClientConfigs, GetCompanyEncryptionKey, ExecuteDynamicDMLQuery, ExecuteDynamicDQLQuery, GetUserProfilePermissions, MakeUserPasswordInvalid, ConvertJsonToXLXS, SendResetPasswordMail, SendMailToSupport, MailTemplateStructure, SendMailToCustomer, parseMSPCookie, GetIPDetailsFromReq, isEmptyObj, SyncListSchemaFieldInOtherCollection, UpdateTagCountAfterDelete, SyncTagCountAfterUpdate, ReactivateFieldInOtherCollection, SyncUserLicenceConsumedCount, BroadCastEventToAllCompanyUsers, CheckDataPermission, SyncCompanyLicenceInMasterCompanyAfterAdd, NextServiceDateForDashboard, CheckDateNotInPast, GetWeekDayByDayAndOccurance, GetInterValFromOccurance, GetWeekDayInfoInMonth, GetDayIndex, RemoveFieldsFromFilters, GetUserProfile, CheckPageAuthentication, ErrorHandlerForServices, CheckCaptcha, ValidateSanitizeUserInput, CreateBanquetingVATSettingsData, CheckReportFolderAccess, GetMailFromString, InvitationMailReplyContent };
|
package/dist/lib/utility.js
CHANGED
|
@@ -4435,9 +4435,10 @@ exports.GetMailFromString = GetMailFromString;
|
|
|
4435
4435
|
/**
|
|
4436
4436
|
* TODO: Return On behalf String in Calendar Invitation mails
|
|
4437
4437
|
* @param fromUser From User Name
|
|
4438
|
+
* @param fromEmail From User Email
|
|
4438
4439
|
* @returns string
|
|
4439
4440
|
*/
|
|
4440
|
-
function InvitationMailReplyContent(fromUser) {
|
|
4441
|
-
return "Please do not 'reply' to this email as it is an automated message and replies are routed to an unmonitored mailbox. If you wish to propose an alternative time, or send a message, please contact " + fromUser + " directly.";
|
|
4441
|
+
function InvitationMailReplyContent(fromUser, fromEmail) {
|
|
4442
|
+
return "Please do not 'reply' to this email as it is an automated message and replies are routed to an unmonitored mailbox. If you wish to propose an alternative time, or send a message, please contact " + fromUser + " at " + fromEmail + " directly.";
|
|
4442
4443
|
}
|
|
4443
4444
|
exports.InvitationMailReplyContent = InvitationMailReplyContent;
|