@artsy/cohesion 4.142.0 → 4.143.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 +12 -0
- package/dist/Schema/Events/index.d.ts +4 -0
- package/dist/Schema/Events/index.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v4.143.0 (Mon Sep 11 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: added tappedCreateAlertHeader action type [#456](https://github.com/artsy/cohesion/pull/456) ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.142.0 (Mon Sep 11 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -688,6 +688,10 @@ export declare enum ActionType {
|
|
|
688
688
|
* Corresponds to {@link TappedCreateAlert}
|
|
689
689
|
*/
|
|
690
690
|
tappedCreateAlert = "tappedCreateAlert",
|
|
691
|
+
/**
|
|
692
|
+
* Corresponds to {@link TappedCreateAlertHeader}
|
|
693
|
+
*/
|
|
694
|
+
tappedCreateAlertHeader = "tappedCreateAlertHeader",
|
|
691
695
|
/**
|
|
692
696
|
* Corresponds to {@link TappedExploreGroup}
|
|
693
697
|
*/
|
|
@@ -182,6 +182,7 @@ exports.ActionType = ActionType;
|
|
|
182
182
|
ActionType["tappedContactGallery"] = "tappedContactGallery";
|
|
183
183
|
ActionType["tappedConsignmentInquiry"] = "tappedConsignmentInquiry";
|
|
184
184
|
ActionType["tappedCreateAlert"] = "tappedCreateAlert";
|
|
185
|
+
ActionType["tappedCreateAlertHeader"] = "tappedCreateAlertHeader";
|
|
185
186
|
ActionType["tappedExploreGroup"] = "tappedExploreGroup";
|
|
186
187
|
ActionType["tappedExploreMyCollection"] = "tappedExploreMyCollection";
|
|
187
188
|
ActionType["tappedFairCard"] = "tappedFairCard";
|