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

paypal-checkout

Package Overview
Dependencies
Maintainers
8
Versions
293
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paypal-checkout - npm Package Compare versions

Comparing version

to
4.0.337

4

package.json
{
"name": "paypal-checkout",
"version": "4.0.336",
"version": "4.0.337",
"description": "PayPal Checkout components, for integrating checkout products.",

@@ -98,3 +98,3 @@ "main": "index.js",

"zalgo-promise": "^1.0.10",
"zoid": "^6.0.67"
"zoid": "6.0.80"
},

@@ -101,0 +101,0 @@ "config": {

@@ -18,2 +18,19 @@ /* @flow */

export function checkForDeprecatedIntegration() {
const scripts = Array.prototype.slice.call(document.getElementsByTagName('script'));
for (const script of scripts) {
if (script.attributes.type?.value === 'application/x-component') {
warn('deprecated_integration_application_xcomponent');
// eslint-disable-next-line no-console
console.error(`
This integration pattern using '<script type="application/x-component">' is no longer supported.
Please visit https://developer.paypal.com/demo/checkout-v4/
for an example of the new recommended integration pattern.
`);
}
}
}
export function checkForCommonErrors() {

@@ -20,0 +37,0 @@

@@ -11,3 +11,3 @@ /* @flow */

getDomainSetting, once, openMetaFrame, precacheRememberedFunding,
getCurrentScript, getRememberedFunding } from './lib';
getCurrentScript, getRememberedFunding, checkForDeprecatedIntegration } from './lib';
import { Button } from './button';

@@ -166,2 +166,4 @@ import { Checkout } from './checkout';

window.addEventListener('load', checkForDeprecatedIntegration);
if (pptm.shouldCreateInitialPptmScript()) {

@@ -168,0 +170,0 @@ pptm.createPptmScript();

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display