serializeapp
Advanced tools
Comparing version 1.0.3 to 2.0.0
@@ -8,4 +8,4 @@ var Promise = require('promise'); | ||
qType: 'variable', | ||
qShowReserved: false, | ||
qShowConfig: false, | ||
qShowReserved: true, | ||
qShowConfig: true, | ||
qData: { | ||
@@ -21,3 +21,9 @@ info: '/qDimInfos' | ||
return app.getVariableById(d.qInfo.qId).then(function (variable) { | ||
return variable.getProperties().then(function(properties) { return properties; }); | ||
return variable.getProperties().then(function(properties) { | ||
if (d.qIsScriptCreated) properties.qIsScriptCreated = d.qIsScriptCreated; | ||
if (d.qIsReserved) properties.qIsReserved = d.qIsReserved; | ||
if (d.qIsConfig) properties.qIsConfig = d.qIsConfig; | ||
return properties; | ||
}); | ||
}); | ||
@@ -24,0 +30,0 @@ })); |
{ | ||
"name": "serializeapp", | ||
"version": "1.0.3", | ||
"version": "2.0.0", | ||
"description": "Serializes a Qlik Sense App into JSON", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16609
252