@artsy/cohesion 4.179.0 → 4.180.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 +12 -0
- package/dist/Schema/Events/Tap.d.ts +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.180.0 (Mon May 06 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Adds optional flow metadata to TappedLearnMore interface [#498](https://github.com/artsy/cohesion/pull/498) ([@jpotts244](https://github.com/jpotts244))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jacqueline Potts ([@jpotts244](https://github.com/jpotts244))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.179.0 (Mon May 06 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -857,7 +857,8 @@ export interface TappedConsignmentInquiry {
|
|
|
857
857
|
* context_screen_owner_type: "fair",
|
|
858
858
|
* context_screen_owner_id: "5f4d80c972737e000deff1ed",
|
|
859
859
|
* context_screen_owner_slug: "latitude-art-fair-2020",
|
|
860
|
-
* subject: "Learn More"
|
|
860
|
+
* subject: "Learn More",
|
|
861
|
+
* flow: "Artsy Guarantee"
|
|
861
862
|
* }
|
|
862
863
|
* ```
|
|
863
864
|
*/
|
|
@@ -869,6 +870,7 @@ export interface TappedLearnMore {
|
|
|
869
870
|
context_screen_owner_slug?: string;
|
|
870
871
|
/** The text of the tapped button */
|
|
871
872
|
subject: string;
|
|
873
|
+
flow?: string;
|
|
872
874
|
}
|
|
873
875
|
/**
|
|
874
876
|
* A user long presses an artwork in the app to show a menu
|