@artsy/cohesion 4.47.1 → 4.48.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,20 @@
1
+ # v4.48.0 (Thu Jun 02 2022)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - new types for my collection [#330](https://github.com/artsy/cohesion/pull/330) ([@dariakoko](https://github.com/dariakoko))
6
+
7
+ #### 🏠 Internal
8
+
9
+ - 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))
10
+
11
+ #### Authors: 2
12
+
13
+ - Daria Kozlova ([@dariakoko](https://github.com/dariakoko))
14
+ - WhiteSource Renovate ([@renovate-bot](https://github.com/renovate-bot))
15
+
16
+ ---
17
+
1
18
  # v4.47.1 (Tue May 17 2022)
2
19
 
3
20
  #### 🐛 Bug Fix
@@ -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";
@@ -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.48.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"