@optimiser/common 1.0.447 → 1.0.449

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.
@@ -135,7 +135,7 @@ exports.GetEmailwiseUnsubscribeData = GetEmailwiseUnsubscribeData;
135
135
  function GenerateAutoIncrementFieldValue(db, autoIncrementID) {
136
136
  var _this = this;
137
137
  return new Promise(function (resolve, reject) { return __awaiter(_this, void 0, void 0, function () {
138
- var sequenceDocument, val, j, item, num, ex_1;
138
+ var sequenceDocument, val, doc, j, item, num, ex_1;
139
139
  return __generator(this, function (_a) {
140
140
  switch (_a.label) {
141
141
  case 0:
@@ -144,13 +144,14 @@ function GenerateAutoIncrementFieldValue(db, autoIncrementID) {
144
144
  case 1:
145
145
  sequenceDocument = _a.sent();
146
146
  val = "";
147
- for (j = 0; j < sequenceDocument.value.Formats.length; j++) {
148
- item = sequenceDocument.value.Formats[j];
147
+ doc = sequenceDocument.value ? sequenceDocument.value : sequenceDocument;
148
+ for (j = 0; j < doc.Formats.length; j++) {
149
+ item = doc.Formats[j];
149
150
  if (item.Type == "Constant") {
150
151
  val += item.Value;
151
152
  }
152
153
  else if (item.Type == "AutoIncrement") {
153
- num = sequenceDocument.value.SequenceValue.toString();
154
+ num = doc.SequenceValue.toString();
154
155
  if (item.MinimumLength && item.MinimumLength > 0) {
155
156
  num = ("0000000000").substring(0, item.MinimumLength - num.length) + num;
156
157
  }
@@ -80,6 +80,15 @@ var __rest = (this && this.__rest) || function (s, e) {
80
80
  }
81
81
  return t;
82
82
  };
83
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
84
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
85
+ if (ar || !(i in from)) {
86
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
87
+ ar[i] = from[i];
88
+ }
89
+ }
90
+ return to.concat(ar || Array.prototype.slice.call(from));
91
+ };
83
92
  var __importDefault = (this && this.__importDefault) || function (mod) {
84
93
  return (mod && mod.__esModule) ? mod : { "default": mod };
85
94
  };
@@ -5035,18 +5044,21 @@ function IsAnotherObjectField(pageData, fieldName) {
5035
5044
  return false;
5036
5045
  }
5037
5046
  var CustomSanitizeHtml = function (dirtyHtml, uiDataType) {
5038
- // Define default sanitization options
5039
5047
  var defaultOptions = {
5040
- allowedTags: sanitize_html_1.default.defaults.allowedTags || false, // Use an empty array if defaults are unavailable
5041
- allowedAttributes: false
5048
+ allowedTags: __spreadArray(__spreadArray([], (sanitize_html_1.default.defaults.allowedTags || []), true), [
5049
+ 'img' //allow img tag qpc-13026
5050
+ ], false),
5051
+ allowedAttributes: {
5052
+ img: ['src', 'alt', 'title', 'width', 'height'],
5053
+ a: ['href', 'name', 'target']
5054
+ },
5055
+ allowedSchemes: ['http', 'https', 'data'], // allow base64 images if needed
5042
5056
  };
5043
- // Determine sanitization options based on uiDataType
5044
5057
  var sanitizeOptions = (uiDataType === 'texteditor') ? defaultOptions : {};
5045
5058
  try {
5046
- // Sanitize the HTML content
5047
5059
  var sanitizedHtmlContent = (0, sanitize_html_1.default)(dirtyHtml, sanitizeOptions);
5048
5060
  if (uiDataType === 'texteditor') {
5049
- return sanitizedHtmlContent; //Return without replace code fixed QPC-11110 script data save
5061
+ return sanitizedHtmlContent;
5050
5062
  }
5051
5063
  return sanitizedHtmlContent
5052
5064
  .replace(/&amp;/g, '&')
@@ -5055,7 +5067,7 @@ var CustomSanitizeHtml = function (dirtyHtml, uiDataType) {
5055
5067
  }
5056
5068
  catch (error) {
5057
5069
  console.error('Sanitization failed:', error);
5058
- return ''; // Return empty string or handle error as needed
5070
+ return '';
5059
5071
  }
5060
5072
  };
5061
5073
  /*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@optimiser/common",
3
- "version": "1.0.447",
3
+ "version": "1.0.449",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {