@artsy/cohesion 4.174.0 → 4.175.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 +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.175.0 (Wed Apr 24 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- [AS-4497] Add flow to tapped buy now [#493](https://github.com/artsy/cohesion/pull/493) ([@daytavares](https://github.com/daytavares))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.174.0 (Wed Apr 24 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -722,7 +722,7 @@ export interface TappedBid {
|
|
|
722
722
|
context_owner_slug: string;
|
|
723
723
|
}
|
|
724
724
|
/**
|
|
725
|
-
* A user taps "
|
|
725
|
+
* A user taps "Purchase" on an artwork page (BNMO)
|
|
726
726
|
*
|
|
727
727
|
* This schema describes events sent to Segment from [[tappedBuyNow]]
|
|
728
728
|
*
|
|
@@ -733,7 +733,8 @@ export interface TappedBid {
|
|
|
733
733
|
* context_owner_type: "Artwork",
|
|
734
734
|
* context_owner_slug: "radna-segal-pearl",
|
|
735
735
|
* context_owner_id: "6164889300d643000db86504",
|
|
736
|
-
* impulse_conversation_id: "198"
|
|
736
|
+
* impulse_conversation_id: "198",
|
|
737
|
+
* flow: "Buy now" | "Partner offer"
|
|
737
738
|
* }
|
|
738
739
|
* ```
|
|
739
740
|
*/
|
|
@@ -743,6 +744,7 @@ export interface TappedBuyNow {
|
|
|
743
744
|
context_owner_id: string;
|
|
744
745
|
context_owner_slug: string;
|
|
745
746
|
impulse_conversation_id?: string;
|
|
747
|
+
flow: string;
|
|
746
748
|
}
|
|
747
749
|
/**
|
|
748
750
|
* A user taps on 'Contact Gallery' on an artwork page
|