apn-app-manager 1.14.2 → 1.14.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cons.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apn-app-manager",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "description": "Appian App Manager",
5
5
  "license": "Apache-2.0",
6
6
  "preferGlobal": true,
package/src/cons.js CHANGED
@@ -31,7 +31,7 @@ module.exports = {
31
31
  // Note that we can assume any UUID that "must be cloned" must be wrapped in either >uuid< or "uuid"
32
32
  // -- i.e. a UUID that represents some metadata of an Appian object,
33
33
  // -- rather than an UUID that is a reference, or connected system third-party id, or just referenced in a code block, or commented out
34
- uuidRegex: /(?<=>|")[A-Za-z0-9-_]{10,}[0-9][A-Za-z0-9-_]{1,}-[A-Za-z0-9-_]{10,}(?=<|")/g,
34
+ uuidRegex: /(?<=>|"|:|\/)[A-Za-z0-9-_]{10,}[0-9][A-Za-z0-9-_]{1,}-[A-Za-z0-9-_]{10,}(?=<|"|:|\/)/g,
35
35
 
36
36
  noNamespace: "Objects with no found namespace",
37
37
  namespaceDelimiterRegex: "[:|_| |\\.|-]",