New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@activepieces/pieces-common

Package Overview
Dependencies
Maintainers
3
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@activepieces/pieces-common - npm Package Compare versions

Comparing version 0.2.10 to 0.2.11

2

package.json
{
"name": "@activepieces/pieces-common",
"version": "0.2.10",
"version": "0.2.11",
"type": "commonjs",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -22,6 +22,9 @@ "use strict";

const timeout = request.timeout ? request.timeout : 0;
for (const key in request.queryParams) {
queryParams.append(key, request.queryParams[key]);
}
const config = {
method: axiosRequestMethod,
url: urlWithoutQueryParams,
params: Object.assign(Object.assign({}, queryParams), request.queryParams),
params: queryParams,
headers,

@@ -28,0 +31,0 @@ data: request.body,

@@ -15,3 +15,3 @@ import { DelegatingAuthenticationConverter } from './delegating-authentication-converter';

urlWithoutQueryParams: string;
queryParams: Record<string, string>;
queryParams: URLSearchParams;
};

@@ -18,0 +18,0 @@ protected getHeaders<RequestBody extends HttpRequestBody>(request: HttpRequest<RequestBody>): HttpHeaders;

@@ -15,6 +15,6 @@ "use strict";

const urlWithoutQueryParams = `${url.origin}${url.pathname}`;
const queryParams = {};
const queryParams = new URLSearchParams();
// Extract query parameters
url.searchParams.forEach((value, key) => {
queryParams[key] = value;
queryParams.append(key, value);
});

@@ -21,0 +21,0 @@ return {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc