@artsy/cohesion 4.45.0 → 4.46.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.46.0 (Tue May 10 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- [NX-3133] Adding impulse id to buy now tap [#327](https://github.com/artsy/cohesion/pull/327) ([@daytavares](https://github.com/daytavares))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.45.0 (Mon May 02 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -694,6 +694,7 @@ export interface TappedBid {
|
|
|
694
694
|
* context_owner_type: "Artwork",
|
|
695
695
|
* context_owner_slug: "radna-segal-pearl",
|
|
696
696
|
* context_owner_id: "6164889300d643000db86504",
|
|
697
|
+
* impulse_conversation_id: "198"
|
|
697
698
|
* }
|
|
698
699
|
* ```
|
|
699
700
|
*/
|
|
@@ -702,6 +703,7 @@ export interface TappedBuyNow {
|
|
|
702
703
|
context_owner_type: ScreenOwnerType;
|
|
703
704
|
context_owner_id: string;
|
|
704
705
|
context_owner_slug: string;
|
|
706
|
+
impulse_conversation_id?: string;
|
|
705
707
|
}
|
|
706
708
|
/**
|
|
707
709
|
* A user taps on 'Contact Gallery' on an artwork page
|
|
@@ -165,7 +165,9 @@ export declare enum ContextModule {
|
|
|
165
165
|
worksByArtistsYouFollowRail = "worksByArtistsYouFollowRail",
|
|
166
166
|
worksByPopularArtistsRail = "worksByPopularArtistsRail",
|
|
167
167
|
worksForSaleRail = "worksForSaleRail",
|
|
168
|
-
yourActiveBids = "yourActiveBids"
|
|
168
|
+
yourActiveBids = "yourActiveBids",
|
|
169
|
+
conversationMakeOfferConfirmArtwork = "conversationMakeOfferConfirmArtwork",
|
|
170
|
+
conversationBuyNowConfirmArtwork = "conversationBuyNowConfirmArtwork"
|
|
169
171
|
}
|
|
170
172
|
/**
|
|
171
173
|
* Limited ContextModules available for web authentication events
|
|
@@ -180,4 +180,6 @@ exports.ContextModule = ContextModule;
|
|
|
180
180
|
ContextModule["worksByPopularArtistsRail"] = "worksByPopularArtistsRail";
|
|
181
181
|
ContextModule["worksForSaleRail"] = "worksForSaleRail";
|
|
182
182
|
ContextModule["yourActiveBids"] = "yourActiveBids";
|
|
183
|
+
ContextModule["conversationMakeOfferConfirmArtwork"] = "conversationMakeOfferConfirmArtwork";
|
|
184
|
+
ContextModule["conversationBuyNowConfirmArtwork"] = "conversationBuyNowConfirmArtwork";
|
|
183
185
|
})(ContextModule || (exports.ContextModule = ContextModule = {}));
|