@paypal/checkout-components 5.0.221 → 5.0.222

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## <small>5.0.222 (2022-05-18)</small>
2
+
3
+ * chore(deps): update actions/stale action to v5 (#1899) ([db265ad](https://github.com/paypal/paypal-checkout-components/commit/db265ad)), closes [#1899](https://github.com/paypal/paypal-checkout-components/issues/1899)
4
+
5
+
6
+
1
7
  ## <small>5.0.221 (2022-05-16)</small>
2
8
 
3
9
  * fix: rename boleto to match confirm-funding-source (#1943) ([59a80ca](https://github.com/paypal/paypal-checkout-components/commit/59a80ca)), closes [#1943](https://github.com/paypal/paypal-checkout-components/issues/1943)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paypal/checkout-components",
3
- "version": "5.0.221",
3
+ "version": "5.0.222",
4
4
  "description": "PayPal Checkout components, for integrating checkout products.",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -73,14 +73,14 @@ export function createVenmoExperiment() : ?Experiment {
73
73
  }
74
74
 
75
75
  if (isIos() && isSafari()) {
76
- return createExperiment('enable_venmo_ios', 90);
76
+ return createExperiment('enable_venmo_ios', 100);
77
77
  }
78
78
 
79
79
  if (isAndroid() && isChrome()) {
80
- return createExperiment('enable_venmo_android', 90);
80
+ return createExperiment('enable_venmo_android', 100);
81
81
  }
82
82
  } else {
83
- return createExperiment('enable_venmo_desktop', 90);
83
+ return createExperiment('enable_venmo_desktop', 100);
84
84
  }
85
85
  }
86
86