@artsy/cohesion 4.47.1 → 4.50.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,44 @@
1
+ # v4.50.0 (Thu Jun 02 2022)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - remove context_screen from TappedRequestPriceEstimate interfase [#332](https://github.com/artsy/cohesion/pull/332) ([@dariakoko](https://github.com/dariakoko))
6
+
7
+ #### Authors: 1
8
+
9
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
10
+
11
+ ---
12
+
13
+ # v4.49.0 (Thu Jun 02 2022)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - add myCollectionMarketSignals module [#331](https://github.com/artsy/cohesion/pull/331) ([@dariakoko](https://github.com/dariakoko))
18
+
19
+ #### Authors: 1
20
+
21
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
22
+
23
+ ---
24
+
25
+ # v4.48.0 (Thu Jun 02 2022)
26
+
27
+ #### 🚀 Enhancement
28
+
29
+ - new types for my collection [#330](https://github.com/artsy/cohesion/pull/330) ([@dariakoko](https://github.com/dariakoko))
30
+
31
+ #### 🏠 Internal
32
+
33
+ - chore(deps): update dep typescript from 4.6.4 to v4.7.2 [#329](https://github.com/artsy/cohesion/pull/329) ([@renovate-bot](https://github.com/renovate-bot))
34
+
35
+ #### Authors: 2
36
+
37
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
38
+ - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
39
+
40
+ ---
41
+
1
42
  # v4.47.1 (Tue May 17 2022)
2
43
 
3
44
  #### 🐛 Bug Fix
@@ -169,7 +169,6 @@ export interface TappedMyCollectionAddArtworkArtist {
169
169
  */
170
170
  export interface TappedRequestPriceEstimate {
171
171
  action: ActionType.tappedRequestPriceEstimate;
172
- context_screen: OwnerType.myCollectionArtwork;
173
172
  context_module: ContextModule.myCollectionArtworkInsights;
174
173
  context_screen_owner_id?: string;
175
174
  context_screen_owner_slug?: string;
@@ -566,6 +566,10 @@ export declare enum ActionType {
566
566
  * Corresponds to {@link TappedViewOffer}
567
567
  */
568
568
  tappedViewOffer = "tappedViewOffer",
569
+ /**
570
+ * Corresponds to {@link TappedUploadAnotherArtwork}
571
+ */
572
+ tappedUploadAnotherArtwork = "tappedUploadAnotherArtwork",
569
573
  /**
570
574
  * Corresponds to {@link TimeOnPage}
571
575
  */
@@ -154,6 +154,7 @@ exports.ActionType = ActionType;
154
154
  ActionType["tappedViewingRoomCard"] = "tappedViewingRoomCard";
155
155
  ActionType["tappedViewingRoomGroup"] = "tappedViewingRoomGroup";
156
156
  ActionType["tappedViewOffer"] = "tappedViewOffer";
157
+ ActionType["tappedUploadAnotherArtwork"] = "tappedUploadAnotherArtwork";
157
158
  ActionType["timeOnPage"] = "timeOnPage";
158
159
  ActionType["toggledAccordion"] = "toggledAccordion";
159
160
  ActionType["toggledNotification"] = "toggledNotification";
@@ -100,6 +100,7 @@ export declare enum ContextModule {
100
100
  myCollectionArtworkAbout = "myCollectionArtworkAbout",
101
101
  myCollectionComparableWorks = "myCollectionComparableWorks",
102
102
  myCollectionHome = "myCollectionHome",
103
+ myCollectionMarketSignals = "myCollectionMarketSignals",
103
104
  newWorksByArtistsYouFollowRail = "newWorksByArtistsYouFollowRail",
104
105
  newWorksForYouRail = "newWorksForYouRail",
105
106
  newWorksByGalleriesYouFollowRail = "newWorksByGalleriesYouFollowRail",
@@ -114,6 +114,7 @@ exports.ContextModule = ContextModule;
114
114
  ContextModule["myCollectionArtworkAbout"] = "myCollectionArtworkAbout";
115
115
  ContextModule["myCollectionComparableWorks"] = "myCollectionComparableWorks";
116
116
  ContextModule["myCollectionHome"] = "myCollectionHome";
117
+ ContextModule["myCollectionMarketSignals"] = "myCollectionMarketSignals";
117
118
  ContextModule["newWorksByArtistsYouFollowRail"] = "newWorksByArtistsYouFollowRail";
118
119
  ContextModule["newWorksForYouRail"] = "newWorksForYouRail";
119
120
  ContextModule["newWorksByGalleriesYouFollowRail"] = "newWorksByGalleriesYouFollowRail";
@@ -42,6 +42,7 @@ export declare enum OwnerType {
42
42
  myCollection = "myCollection",
43
43
  myCollectionArtwork = "myCollectionArtwork",
44
44
  myCollectionAddArtworkArtist = "myCollectionAddArtworkArtist",
45
+ myCollectionInsights = "myCollectionInsights",
45
46
  newWorksForYou = "newWorksForYou",
46
47
  onboarding = "onboarding",
47
48
  ordersAccept = "orders-accept",
@@ -60,6 +60,7 @@ exports.OwnerType = OwnerType;
60
60
  OwnerType["myCollection"] = "myCollection";
61
61
  OwnerType["myCollectionArtwork"] = "myCollectionArtwork";
62
62
  OwnerType["myCollectionAddArtworkArtist"] = "myCollectionAddArtworkArtist";
63
+ OwnerType["myCollectionInsights"] = "myCollectionInsights";
63
64
  OwnerType["newWorksForYou"] = "newWorksForYou";
64
65
  OwnerType["onboarding"] = "onboarding";
65
66
  OwnerType["ordersAccept"] = "orders-accept";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.47.1",
3
+ "version": "4.50.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {
@@ -47,7 +47,7 @@
47
47
  "lint-staged": "10.1.7",
48
48
  "prettier": "2.0.5",
49
49
  "typedoc": "0.17.7",
50
- "typescript": "4.6.4"
50
+ "typescript": "4.7.2"
51
51
  },
52
52
  "dependencies": {
53
53
  "core-js": "3"