@artsy/cohesion 4.24.0 → 4.25.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,16 @@
1
+ # v4.25.0 (Mon Nov 29 2021)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - [FX-3343] Remove deprecated clickedAppDownload helper [#261](https://github.com/artsy/cohesion/pull/261) ([@lidimayra](https://github.com/lidimayra) [@mdole](https://github.com/mdole))
6
+
7
+ #### Authors: 2
8
+
9
+ - Lidiane Taquehara ([@lidimayra](https://github.com/lidimayra))
10
+ - Matt Dole ([@mdole](https://github.com/mdole))
11
+
12
+ ---
13
+
1
14
  # v4.24.0 (Mon Nov 29 2021)
2
15
 
3
16
  #### 🚀 Enhancement
@@ -1,6 +1,5 @@
1
1
  export * from "./AddToCalendar";
2
2
  export * from "./Share";
3
- export * from "./Click/ClickedAppDownload";
4
3
  export * from "./Click/ClickedArtistSeriesGroup";
5
4
  export * from "./Click/ClickedCollectionGroup";
6
5
  export * from "./Click/ClickedEntityGroup";
@@ -28,18 +28,6 @@ Object.keys(_Share).forEach(function (key) {
28
28
  });
29
29
  });
30
30
 
31
- var _ClickedAppDownload = require("./Click/ClickedAppDownload");
32
-
33
- Object.keys(_ClickedAppDownload).forEach(function (key) {
34
- if (key === "default" || key === "__esModule") return;
35
- Object.defineProperty(exports, key, {
36
- enumerable: true,
37
- get: function get() {
38
- return _ClickedAppDownload[key];
39
- }
40
- });
41
- });
42
-
43
31
  var _ClickedArtistSeriesGroup = require("./Click/ClickedArtistSeriesGroup");
44
32
 
45
33
  Object.keys(_ClickedArtistSeriesGroup).forEach(function (key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.24.0",
3
+ "version": "4.25.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {
@@ -1,2 +0,0 @@
1
- import { ClickedAppDownload } from "../../Schema";
2
- export declare const clickedAppDownload: (props: Omit<ClickedAppDownload, "action">) => ClickedAppDownload;
@@ -1,22 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.clickedAppDownload = void 0;
7
-
8
- var _Schema = require("../../Schema");
9
-
10
- var clickedAppDownload = function clickedAppDownload(props) {
11
- return {
12
- action: _Schema.ActionType.clickedAppDownload,
13
- context_module: props.context_module,
14
- context_page_owner_id: props.context_page_owner_id,
15
- context_page_owner_slug: props.context_page_owner_slug,
16
- context_page_owner_type: props.context_page_owner_type,
17
- destination_path: props.destination_path,
18
- subject: props.subject
19
- };
20
- };
21
-
22
- exports.clickedAppDownload = clickedAppDownload;