apn-app-manager 2.0.1 → 2.0.2

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/README.md CHANGED
@@ -73,7 +73,7 @@ Used to duplicate all objects of an application, which replaces the namespace of
73
73
  1. There are some other documents generated in the `/out/debug/` folder after cloning:
74
74
  - `objects.json` - This contains every attribute of collected metadata from every object in the package, including its current value and new value.
75
75
  - `selected-files.json` - This contains the files selected for each menu or cli argument when cloning.
76
- - `not-cloned-uuids.json` - Warnings may appear during cloning about UUIDs in the package that the tool didn't know how to handle, which will be listed in this file. If no warnings appeared, this file will be empty. Generally these can be ignored if your inspection looks good, however these may be actual issues that come up due to XML structure changes in future Appian platform releases. Please reach out to the authors of this tool if you have any questions about this.
76
+ - `not-cloned-uuids.json` - Warnings may appear during cloning about UUIDs in the package that the tool didn't know how to handle, which will be listed in this file. If no warnings appeared, this file will be empty. Generally these can be ignored if your inspection looks good, or if your application code has other UUIDs which are unrelated to Appian design objects. However these may be actual issues that come up due to XML structure changes in future Appian platform releases. Please reach out to the authors of this tool if you have any further questions.
77
77
  - `namespaces.json` - This contains a mapping of old-to-new namespaces used when cloning.
78
78
  - `problem-terms.json` - Only output if problem terms were identified. This contains a mapping of problem words, where they were found, and what decision was made for them.
79
79
  - `options.json` - This contains the options chosen (or used by default) when cloning.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apn-app-manager",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -222,7 +222,7 @@ function executeClone() {
222
222
  if (uuidCollector["uuids"].length > 0) {
223
223
  util.printGap();
224
224
  util.printWarning(
225
- `${uuidCollector["uuids"].length} uuids were found in your zip but not parsed via cloning (see output file 'debug/not-cloned-uuids.json'). Check the count of missing precedents from your app package in your source environment. If it is ${uuidCollector["uuids"].length} objects, then those are likely just the missing precedents, otherwise please reach out to the authors of this tool, since the XML structure of Appian objects has probably changed and this tool needs to be updated.`
225
+ `${uuidCollector["uuids"].length} uuids were found in your zip but not parsed via cloning (see output file 'debug/not-cloned-uuids.json'). If inspect & import are fine, it's likely a non-issue. For more information, read the documentation at https://www.npmjs.com/package/apn-app-manager.`
226
226
  );
227
227
  }
228
228
  util.printGap();