appc-platform-sdk
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -86,2 +86,4 @@ /** | ||
securityurl: 'https://security.appcelerator.com', | ||
pubsuburl: 'https://pubsub.appcelerator.com', | ||
webeventurl: 'https://webevent.appcelerator.com', | ||
isProduction: true, | ||
@@ -95,2 +97,4 @@ supportUntrusted: false, | ||
securityurl: 'https://security-preprod.cloud.appctest.com', | ||
pubsuburl: 'https://pubsub-preprod.cloud.appctest.com', | ||
webeventurl: 'https://webevent-preprod.cloud.appctest.com', | ||
isProduction: false, | ||
@@ -109,2 +113,4 @@ supportUntrusted: true, | ||
AppC.securityurl = DEFAULTS.PRODUCTION.securityurl; | ||
AppC.pubsuburl = DEFAULTS.PRODUCTION.pubsuburl; | ||
AppC.webeventurl = DEFAULTS.PRODUCTION.webeventurl; | ||
AppC.isProduction = DEFAULTS.PRODUCTION.isProduction; | ||
@@ -123,2 +129,4 @@ AppC.supportUntrusted = DEFAULTS.PRODUCTION.supportUntrusted; | ||
AppC.securityurl = DEFAULTS.PREPRODUCTION.securityurl; | ||
AppC.pubsuburl = DEFAULTS.PREPRODUCTION.pubsuburl; | ||
AppC.webeventurl = DEFAULTS.PREPRODUCTION.webeventurl; | ||
AppC.isProduction = DEFAULTS.PREPRODUCTION.isProduction; | ||
@@ -151,2 +159,4 @@ AppC.supportUntrusted = DEFAULTS.PREPRODUCTION.supportUntrusted; | ||
AppC.securityurl = opts.security || base.securityurl; | ||
AppC.pubsuburl = opts.pubsub || base.pubsuburl; | ||
AppC.webeventurl = opts.webevent || base.webeventurl; | ||
AppC.isProduction = typeof opts.isProduction !== 'undefined' ? opts.isProduction : base.isProduction; | ||
@@ -153,0 +163,0 @@ AppC.supportUntrusted = typeof opts.supportUntrusted !== 'undefined' ? opts.supportUntrusted : base.supportUntrusted; |
{ | ||
"name": "appc-platform-sdk", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Appcelerator Platform SDK for node.js", | ||
@@ -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
52098
1344