Comparing version 0.1.30 to 0.1.31
@@ -586,2 +586,56 @@ ;(function() { | ||
); | ||
}, | ||
setCredentialsSalesforceApi: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/credentials', method: 'POST'}, | ||
data, | ||
callback | ||
); | ||
}, | ||
getCredentialsSalesforceApi: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/credentials', method: 'GET'}, | ||
data, | ||
callback | ||
); | ||
}, | ||
getSalesforceMetaData: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/salesforceMetaData', method: 'GET'}, | ||
data, | ||
callback | ||
); | ||
}, | ||
getSalesforcePicklist: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/picklist', method: 'GET'}, | ||
data, | ||
callback | ||
); | ||
}, | ||
setSalesforcePicklist: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/picklist', method: 'POST'}, | ||
data, | ||
callback | ||
); | ||
}, | ||
getSalesforceData: function(data, callback) { | ||
this.parent._doHyperJSONEmit( | ||
this.parent._emitSessionEvent, | ||
{type: 'salesforceGet'}, | ||
{uri: '/salesforce', method: 'GET'}, | ||
data, | ||
callback | ||
); | ||
} | ||
@@ -588,0 +642,0 @@ }, |
{ | ||
"name": "help-fem", | ||
"version": "0.1.30", | ||
"version": "0.1.31", | ||
"description": "A Browserify/Node.js client module for the Help.com team's FEM.", | ||
@@ -5,0 +5,0 @@ "main": "help-fem.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
31361
851