@artsy/cohesion 4.187.0 → 4.189.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 +24 -0
- package/dist/DeprecatedSchema/DeprecatedValues.d.ts +1 -0
- package/dist/DeprecatedSchema/DeprecatedValues.js +1 -0
- package/dist/Schema/Events/Click.d.ts +14 -0
- package/dist/Schema/Events/Tap.d.ts +14 -0
- package/dist/Schema/Events/index.d.ts +8 -0
- package/dist/Schema/Events/index.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# v4.189.0 (Mon Jun 17 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Adding tracking for Complete your profile prompt on web and app [#507](https://github.com/artsy/cohesion/pull/507) ([@leodmz](https://github.com/leodmz))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.188.0 (Thu Jun 13 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat: adds whats new context module [#506](https://github.com/artsy/cohesion/pull/506) ([@dzucconi](https://github.com/dzucconi))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Damon ([@dzucconi](https://github.com/dzucconi))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.187.0 (Fri Jun 07 2024)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -281,6 +281,7 @@ export declare enum ContextModule {
|
|
|
281
281
|
HeaderActivityDropdown = "HeaderActivityDropdown",
|
|
282
282
|
HeaderArtworksDropdown = "HeaderArtworksDropdown",
|
|
283
283
|
HeaderArtistsDropdown = "HeaderArtistsDropdown",
|
|
284
|
+
HeaderWhatsNewDropdown = "HeaderWhatsNewDropdown",
|
|
284
285
|
/**
|
|
285
286
|
* Artist page
|
|
286
287
|
*/
|
|
@@ -213,6 +213,7 @@ exports.ContextModule = ContextModule;
|
|
|
213
213
|
ContextModule["HeaderActivityDropdown"] = "HeaderActivityDropdown";
|
|
214
214
|
ContextModule["HeaderArtworksDropdown"] = "HeaderArtworksDropdown";
|
|
215
215
|
ContextModule["HeaderArtistsDropdown"] = "HeaderArtistsDropdown";
|
|
216
|
+
ContextModule["HeaderWhatsNewDropdown"] = "HeaderWhatsNewDropdown";
|
|
216
217
|
ContextModule["ArtistConsignment"] = "ArtistConsignment";
|
|
217
218
|
ContextModule["ArtistPage"] = "Artist page";
|
|
218
219
|
ContextModule["AboutTheWork"] = "About the work";
|
|
@@ -2084,3 +2084,17 @@ export interface ClickedViewFullConversationHistory {
|
|
|
2084
2084
|
partner_id: string;
|
|
2085
2085
|
inquiry_id: string;
|
|
2086
2086
|
}
|
|
2087
|
+
/**
|
|
2088
|
+
* A user clicks on the complete your profile prompt within the activity pannel
|
|
2089
|
+
*
|
|
2090
|
+
* This schema describes events sent to Segment from [[clickedCompleteYourProfile]]
|
|
2091
|
+
*
|
|
2092
|
+
*/
|
|
2093
|
+
export interface ClickedCompleteYourProfile {
|
|
2094
|
+
action: ActionType.clickedCompleteYourProfile;
|
|
2095
|
+
context_module: ContextModule;
|
|
2096
|
+
context_page_owner_type: PageOwnerType;
|
|
2097
|
+
context_page_owner_id: string;
|
|
2098
|
+
context_page_owner_slug?: string;
|
|
2099
|
+
user_id: string;
|
|
2100
|
+
}
|
|
@@ -1026,3 +1026,17 @@ export interface TappedViewWork {
|
|
|
1026
1026
|
artwork_id: string;
|
|
1027
1027
|
notification_type: string;
|
|
1028
1028
|
}
|
|
1029
|
+
/**
|
|
1030
|
+
* A user taps on the complete your profile prompt within the activity pannel
|
|
1031
|
+
*
|
|
1032
|
+
* This schema describes events sent to Segment from [[tappedCompleteYourProfile]]
|
|
1033
|
+
*
|
|
1034
|
+
*/
|
|
1035
|
+
export interface TappedCompleteYourProfile {
|
|
1036
|
+
action: ActionType.tappedCompleteYourProfile;
|
|
1037
|
+
context_module: ContextModule;
|
|
1038
|
+
context_screen_owner_type: ScreenOwnerType;
|
|
1039
|
+
context_screen_owner_id: string;
|
|
1040
|
+
context_screen_owner_slug?: string;
|
|
1041
|
+
user_id: string;
|
|
1042
|
+
}
|
|
@@ -184,6 +184,10 @@ export declare enum ActionType {
|
|
|
184
184
|
* Corresponds to {@link ClickedCollectionGroup}
|
|
185
185
|
*/
|
|
186
186
|
clickedCollectionGroup = "clickedCollectionGroup",
|
|
187
|
+
/**
|
|
188
|
+
* Corresponds to {@link ClickedCompleteYourProfile}
|
|
189
|
+
*/
|
|
190
|
+
clickedCompleteYourProfile = "clickedCompleteYourProfile",
|
|
187
191
|
/**
|
|
188
192
|
* Corresponds to {@link ClickedCreateAlert}
|
|
189
193
|
*/
|
|
@@ -788,6 +792,10 @@ export declare enum ActionType {
|
|
|
788
792
|
* Corresponds to {@link TappedCollectionGroup}
|
|
789
793
|
*/
|
|
790
794
|
tappedCollectionGroup = "tappedCollectionGroup",
|
|
795
|
+
/**
|
|
796
|
+
* Corresponds to {@link TappedCompleteYourProfile}
|
|
797
|
+
*/
|
|
798
|
+
tappedCompleteYourProfile = "tappedCompleteYourProfile",
|
|
791
799
|
/**
|
|
792
800
|
* Corresponds to {@link TappedConsign}
|
|
793
801
|
*/
|
|
@@ -56,6 +56,7 @@ exports.ActionType = ActionType;
|
|
|
56
56
|
ActionType["clickedChangeShippingAddress"] = "clickedChangeShippingAddress";
|
|
57
57
|
ActionType["clickedChangeShippingMethod"] = "clickedChangeShippingMethod";
|
|
58
58
|
ActionType["clickedCollectionGroup"] = "clickedCollectionGroup";
|
|
59
|
+
ActionType["clickedCompleteYourProfile"] = "clickedCompleteYourProfile";
|
|
59
60
|
ActionType["clickedCreateAlert"] = "clickedCreateAlert";
|
|
60
61
|
ActionType["clickedDeliveryMethod"] = "clickedDeliveryMethod";
|
|
61
62
|
ActionType["clickedEditArtwork"] = "clickedEditArtwork";
|
|
@@ -207,6 +208,7 @@ exports.ActionType = ActionType;
|
|
|
207
208
|
ActionType["tappedCollectedArtwork"] = "tappedCollectedArtwork";
|
|
208
209
|
ActionType["tappedCollectedArtworkImages"] = "tappedCollectedArtworkImages";
|
|
209
210
|
ActionType["tappedCollectionGroup"] = "tappedCollectionGroup";
|
|
211
|
+
ActionType["tappedCompleteYourProfile"] = "tappedCompleteYourProfile";
|
|
210
212
|
ActionType["tappedConsign"] = "tappedConsign";
|
|
211
213
|
ActionType["tappedContactGallery"] = "tappedContactGallery";
|
|
212
214
|
ActionType["tappedConsignmentInquiry"] = "tappedConsignmentInquiry";
|