@artsy/cohesion 4.247.0 → 4.248.0
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,15 @@
|
|
|
1
|
+
# v4.248.0 (Tue Mar 25 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore(EMI-2366): update express checkout viewed to receive multiple payment methods [#574](https://github.com/artsy/cohesion/pull/574) ([@rquartararo](https://github.com/rquartararo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Rachel Quartararo ([@rquartararo](https://github.com/rquartararo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.247.0 (Mon Mar 24 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -361,7 +361,7 @@ export interface ShippingEstimateViewed {
|
|
|
361
361
|
* context_page_owner_slug: "radna-segal-pearl",
|
|
362
362
|
* context_page_owner_id: "6164889300d643000db86504",
|
|
363
363
|
* flow: "Buy now" | "Make offer" | "Partner offer"
|
|
364
|
-
*
|
|
364
|
+
* payment_methods: ["Apple Pay", "Google Pay"]
|
|
365
365
|
* }
|
|
366
366
|
* ```
|
|
367
367
|
*/
|
|
@@ -371,5 +371,5 @@ export interface ExpressCheckoutViewed {
|
|
|
371
371
|
context_page_owner_slug: string;
|
|
372
372
|
context_page_owner_id: string;
|
|
373
373
|
flow: string;
|
|
374
|
-
|
|
374
|
+
payment_methods: string[];
|
|
375
375
|
}
|