@artsy/cohesion 4.188.0 → 4.190.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,32 @@
|
|
|
1
|
+
# v4.190.0 (Mon Jul 01 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- amending CollectorProfiles for the new flow [#509](https://github.com/artsy/cohesion/pull/509) ([@leodmz](https://github.com/leodmz))
|
|
6
|
+
|
|
7
|
+
#### 🏠 Internal
|
|
8
|
+
|
|
9
|
+
- Bump ws from 7.5.8 to 7.5.10 [#508](https://github.com/artsy/cohesion/pull/508) ([@dependabot[bot]](https://github.com/dependabot[bot]))
|
|
10
|
+
|
|
11
|
+
#### Authors: 2
|
|
12
|
+
|
|
13
|
+
- [@dependabot[bot]](https://github.com/dependabot[bot])
|
|
14
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
# v4.189.0 (Mon Jun 17 2024)
|
|
19
|
+
|
|
20
|
+
#### 🚀 Enhancement
|
|
21
|
+
|
|
22
|
+
- Adding tracking for Complete your profile prompt on web and app [#507](https://github.com/artsy/cohesion/pull/507) ([@leodmz](https://github.com/leodmz))
|
|
23
|
+
|
|
24
|
+
#### Authors: 1
|
|
25
|
+
|
|
26
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
1
30
|
# v4.188.0 (Thu Jun 13 2024)
|
|
2
31
|
|
|
3
32
|
#### 🚀 Enhancement
|
|
@@ -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
|
+
}
|
|
@@ -23,7 +23,7 @@ import { Platform } from "./MyCollection";
|
|
|
23
23
|
*/
|
|
24
24
|
export interface EditedUserProfile {
|
|
25
25
|
action: ActionType.editedUserProfile;
|
|
26
|
-
context_screen: ContextModule
|
|
27
|
-
context_screen_owner_type: OwnerType
|
|
26
|
+
context_screen: ContextModule;
|
|
27
|
+
context_screen_owner_type: OwnerType;
|
|
28
28
|
platform: Platform;
|
|
29
29
|
}
|
|
@@ -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";
|