Socket
Socket
Sign inDemoInstall

node-salesforce-connection

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.2.1 to 2.2.2

2

package.json
{
"name": "node-salesforce-connection",
"version": "2.2.1",
"version": "2.2.2",
"description": "A minimal library for connecting to Salesforce from Node.js",

@@ -5,0 +5,0 @@ "license": "MIT",

"use strict";
let https = require("https");
let urlEncoder = require("./urlencoder");
let querystring = require("querystring");
let XML = require("./xml");

@@ -77,3 +77,3 @@

} else if (bodyType == "urlencoded") {
body = urlEncoder(body);
body = querystring.stringify(body);
headers["Content-Type"] = "application/x-www-form-urlencoded; charset=UTF-8";

@@ -80,0 +80,0 @@ } else if (bodyType == "raw") {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc