@artsy/cohesion 4.68.0 → 4.69.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.69.0 (Mon Oct 24 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- refactor: remove unused `user_id` field for `ActivityPanel` events [#358](https://github.com/artsy/cohesion/pull/358) ([@dimatretyak](https://github.com/dimatretyak))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Dima Tretyak ([@dimatretyak](https://github.com/dimatretyak))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.68.0 (Wed Oct 19 2022)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -11,14 +11,12 @@ import { ActionType } from ".";
|
|
|
11
11
|
* @example
|
|
12
12
|
* ```
|
|
13
13
|
* {
|
|
14
|
-
* action: "clickedNotificationsBell"
|
|
15
|
-
* user_id: "5bd8b675776bd6002c86526c"
|
|
14
|
+
* action: "clickedNotificationsBell"
|
|
16
15
|
* }
|
|
17
16
|
* ```
|
|
18
17
|
*/
|
|
19
18
|
export interface ClickedNotificationsBell {
|
|
20
19
|
action: ActionType.clickedNotificationsBell;
|
|
21
|
-
user_id: string;
|
|
22
20
|
}
|
|
23
21
|
/**
|
|
24
22
|
* A user clicked on a notification in Activity Panel.
|
|
@@ -29,14 +27,12 @@ export interface ClickedNotificationsBell {
|
|
|
29
27
|
* ```
|
|
30
28
|
* {
|
|
31
29
|
* action: "clickedActivityPanelNotificationItem",
|
|
32
|
-
* user_id: "5bd8b675776bd6002c86526c",
|
|
33
30
|
* notification_type: "ARTWORK_ALERT"
|
|
34
31
|
* }
|
|
35
32
|
* ```
|
|
36
33
|
*/
|
|
37
34
|
export interface ClickedActivityPanelNotificationItem {
|
|
38
35
|
action: ActionType.clickedActivityPanelNotificationItem;
|
|
39
|
-
user_id: string;
|
|
40
36
|
notification_type: string;
|
|
41
37
|
}
|
|
42
38
|
/**
|
|
@@ -48,13 +44,11 @@ export interface ClickedActivityPanelNotificationItem {
|
|
|
48
44
|
* ```
|
|
49
45
|
* {
|
|
50
46
|
* action: "clickedActivityPanelTab",
|
|
51
|
-
* user_id: "5bd8b675776bd6002c86526c",
|
|
52
47
|
* tab_name: "Alerts"
|
|
53
48
|
* }
|
|
54
49
|
* ```
|
|
55
50
|
*/
|
|
56
51
|
export interface ClickedActivityPanelTab {
|
|
57
52
|
action: ActionType.clickedActivityPanelTab;
|
|
58
|
-
user_id: string;
|
|
59
53
|
tab_name: string;
|
|
60
54
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { AddToCalendar } from "./AddToCalendar";
|
|
2
1
|
import { ClickedActivityPanelNotificationItem, ClickedActivityPanelTab, ClickedNotificationsBell } from "./ActivityPanel";
|
|
2
|
+
import { AddToCalendar } from "./AddToCalendar";
|
|
3
3
|
import { AuctionPageView, BidPageView, ClickedActiveBid, ClickedRegisterToBid, ConfirmBid, ConfirmRegistrationPageview, EnterLiveAuction, MaxBidSelected, RegistrationPageView, RegistrationSubmitted } from "./Auction";
|
|
4
4
|
import { AuthImpression, CompletedOnboarding, CreatedAccount, OnboardingUserInputData, ResetYourPassword, StartedOnboarding, SuccessfullyLoggedIn } from "./Authentication";
|
|
5
5
|
import { CheckedAccountBalance, ClickedAddNewShippingAddress, ClickedAddWorksToFair, ClickedAppDownload, ClickedArticleGroup, ClickedArtistGroup, ClickedArtistSeriesGroup, ClickedArtworkGroup, ClickedAuctionGroup, ClickedBuyerProtection, ClickedChangePage, ClickedChangePaymentMethod, ClickedChangeShippingAddress, ClickedChangeShippingMethod, ClickedCollectionGroup, ClickedCreateAlert, ClickedDeliveryMethod, ClickedEditArtwork, ClickedExpansionToggle, ClickedFairCard, ClickedFairGroup, ClickedGalleryGroup, ClickedLoadMore, ClickedMainArtworkGrid, ClickedNavigationTab, ClickedOfferActions, ClickedOfferOption, ClickedOnArtworkShippingUnitsDropdown, ClickedOnArtworkShippingWeight, ClickedOnFramedMeasurements, ClickedOnFramedMeasurementsDropdown, ClickedOnSubmitOrder, ClickedOrderPage, ClickedPartnerCard, ClickedPartnerLink, ClickedPaymentDetails, ClickedPaymentMethod, ClickedPromoSpace, ClickedSelectShippingOption, ClickedShippingAddress, ClickedShowGroup, ClickedShowMore, ClickedSnooze, ClickedVerifyIdentity, ClickedViewingRoomCard } from "./Click";
|