@artsy/cohesion 4.248.0 → 4.249.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.249.0 (Thu Mar 27 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Rename wallet type field and correct example values [#575](https://github.com/artsy/cohesion/pull/575) ([@xander-pero](https://github.com/xander-pero))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@xander-pero](https://github.com/xander-pero)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.248.0 (Tue Mar 25 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -2319,7 +2319,7 @@ export interface ClickedHeroUnitGroup {
|
|
|
2319
2319
|
* context_page_owner_slug: "radna-segal-pearl",
|
|
2320
2320
|
* context_page_owner_id: "6164889300d643000db86504",
|
|
2321
2321
|
* flow: "Buy now" | "Make offer" | "Partner offer"
|
|
2322
|
-
*
|
|
2322
|
+
* credit_card_wallet_type: "applePay" | "googlePay"
|
|
2323
2323
|
* }
|
|
2324
2324
|
* ```
|
|
2325
2325
|
*/
|
|
@@ -2329,7 +2329,7 @@ export interface ClickedExpressCheckout {
|
|
|
2329
2329
|
context_page_owner_slug: string;
|
|
2330
2330
|
context_page_owner_id: string;
|
|
2331
2331
|
flow: string;
|
|
2332
|
-
|
|
2332
|
+
credit_card_wallet_type: string;
|
|
2333
2333
|
}
|
|
2334
2334
|
/**
|
|
2335
2335
|
* A user clicks on cancel express checkout button
|
|
@@ -2344,7 +2344,7 @@ export interface ClickedExpressCheckout {
|
|
|
2344
2344
|
* context_page_owner_slug: "radna-segal-pearl",
|
|
2345
2345
|
* context_page_owner_id: "6164889300d643000db86504",
|
|
2346
2346
|
* flow: "Buy now" | "Make offer" | "Partner offer"
|
|
2347
|
-
*
|
|
2347
|
+
* credit_card_wallet_type: "applePay" | "googlePay"
|
|
2348
2348
|
* }
|
|
2349
2349
|
* ```
|
|
2350
2350
|
*/
|
|
@@ -2354,5 +2354,5 @@ export interface ClickedCancelExpressCheckout {
|
|
|
2354
2354
|
context_page_owner_slug: string;
|
|
2355
2355
|
context_page_owner_id: string;
|
|
2356
2356
|
flow: string;
|
|
2357
|
-
|
|
2357
|
+
credit_card_wallet_type: string;
|
|
2358
2358
|
}
|
|
@@ -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
|
+
* credit_card_wallet_types: ["applePay", "googlePay"]
|
|
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
|
+
credit_card_wallet_types: string[];
|
|
375
375
|
}
|