paypal-checkout
Advanced tools
Comparing version
{ | ||
"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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
3822985
0.03%58455
0.03%1
Infinity%+ Added
- Removed
- Removed
Updated