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

@hyperse/paypal-node-sdk

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hyperse/paypal-node-sdk - npm Package Compare versions

Comparing version 2.0.3 to 2.0.4

2

dist/webhook/webhookCreateRequest.d.ts

@@ -23,5 +23,5 @@ import { HttpRequestBase } from '../core/HttpRequestBase.js';

export declare class WebhookCreateRequest extends HttpRequestBase<BaseWebhookHeaders, WebhookCreateRequestBody> {
constructor(webhookId: string);
constructor();
requestBody(createRequest: WebhookCreateRequestBody): this;
}
export {};

@@ -1,2 +0,1 @@

import querystring from 'querystring';
import { HttpRequestBase } from '../core/HttpRequestBase.js';

@@ -8,7 +7,6 @@ /**

export class WebhookCreateRequest extends HttpRequestBase {
constructor(webhookId) {
constructor() {
super();
this.verb = 'POST';
this.path = '/v1/notifications/webhooks/{webhook_id}?';
this.path = this.path.replace('{webhook_id}', querystring.escape(webhookId));
this.path = '/v1/notifications/webhooks';
this.headers = {

@@ -15,0 +13,0 @@ 'Content-Type': 'application/json',

@@ -23,3 +23,3 @@ import { HttpRequestBase } from '../core/HttpRequestBase.js';

*/
from: string;
from?: string;
};

@@ -26,0 +26,0 @@ /**

@@ -12,3 +12,3 @@ import querystring from 'querystring';

super();
this.verb = 'POST';
this.verb = 'PATCH';
this.path = '/v1/notifications/webhooks/{webhook_id}?';

@@ -15,0 +15,0 @@ this.path = this.path.replace('{webhook_id}', querystring.escape(webhookId));

{
"name": "@hyperse/paypal-node-sdk",
"version": "2.0.3",
"version": "2.0.4",
"description": "NodeJS SDK for PayPal Checkout APIs",

@@ -76,4 +76,6 @@ "keywords": [

"dependencies": {
"@mswjs/data": "^0.16.2",
"@paypal/paypalhttp": "^1.0.1",
"@types/paypal__paypalhttp": "^1.0.3"
"@types/paypal__paypalhttp": "^1.0.3",
"msw": "^2.4.11"
},

@@ -87,9 +89,9 @@ "devDependencies": {

"@hyperse/eslint-config-hyperse": "^1.0.10",
"@swc/core": "1.7.0",
"@types/node": "20.14.11",
"@swc/core": "1.7.2",
"@types/node": "20.14.12",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.5",
"eslint": "^9.7.0",
"husky": "9.1.1",
"eslint": "^9.8.0",
"husky": "9.1.3",
"lint-staged": "15.2.7",

@@ -106,3 +108,3 @@ "minimist": "1.2.8",

},
"packageManager": "yarn@4.2.2"
"packageManager": "yarn@4.3.1"
}
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