apn-app-manager 1.2.0 → 1.3.0
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/package.json +1 -1
- package/src/objectProps.js +9 -0
package/package.json
CHANGED
package/src/objectProps.js
CHANGED
|
@@ -29,6 +29,7 @@ const fieldNames = {
|
|
|
29
29
|
UUID: "uuid",
|
|
30
30
|
NAME: "name",
|
|
31
31
|
DESCRIPTION: "description",
|
|
32
|
+
INPUT_DESCRIPTION: "inputDescription",
|
|
32
33
|
VERSION: "version",
|
|
33
34
|
CACHE_VERSION: "cacheVersionKey",
|
|
34
35
|
HISTORY_UUIDS: "historyUuids",
|
|
@@ -454,6 +455,14 @@ const haulTypes = [
|
|
|
454
455
|
usage: [usageTypes.CLONE, usageTypes.BUILD, usageTypes.RENAME],
|
|
455
456
|
replaceFormat: "description>{VALUE}</",
|
|
456
457
|
},
|
|
458
|
+
{
|
|
459
|
+
fieldName: fieldNames.INPUT_DESCRIPTION,
|
|
460
|
+
xpath: `{OBTYPE}Haul/*[contains(name(), '')]/namedTypedValue/description/node()`,
|
|
461
|
+
type: propTypes.TEXT,
|
|
462
|
+
usage: [usageTypes.CLONE, usageTypes.BUILD, usageTypes.RENAME],
|
|
463
|
+
replaceFormat: "description>{VALUE}</",
|
|
464
|
+
isArray: true,
|
|
465
|
+
},
|
|
457
466
|
{
|
|
458
467
|
fieldName: fieldNames.VERSION,
|
|
459
468
|
xpath: `{OBTYPE}Haul/versionUuid/node()`,
|