gemcap-be-common 1.4.233 → 1.4.234

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.
@@ -12,8 +12,7 @@ const extractReferenceValue = (reference, key) => {
12
12
  return '';
13
13
  }
14
14
  let value = match[1].trim();
15
- // Remove trailing account markers like /AC- or /BC-
16
- value = value.split('/')[0].trim();
15
+ value = value.trim();
17
16
  // Remove NOTPROVIDED if present
18
17
  value = value.replace(/NOTPROVIDED/gi, '').trim();
19
18
  // Collapse multiple spaces (incl. tabs) into a single space
@@ -14,8 +14,7 @@ const extractReferenceValue = (reference: string, key: string): string => {
14
14
 
15
15
  let value = match[1].trim();
16
16
 
17
- // Remove trailing account markers like /AC- or /BC-
18
- value = value.split('/')[0].trim();
17
+ value = value.trim();
19
18
 
20
19
  // Remove NOTPROVIDED if present
21
20
  value = value.replace(/NOTPROVIDED/gi, '').trim();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.233",
3
+ "version": "1.4.234",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {