@artsy/cohesion 4.207.0 → 4.209.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,27 @@
|
|
|
1
|
+
# v4.209.0 (Mon Oct 21 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: Add more data to event when publishing matching work from demand AMBER-1090 [#531](https://github.com/artsy/cohesion/pull/531) ([@jonallured](https://github.com/jonallured))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Jon Allured ([@jonallured](https://github.com/jonallured))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v4.208.0 (Fri Oct 18 2024)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- feat(DIA-815): added "tap" to AuthTrigger [#532](https://github.com/artsy/cohesion/pull/532) ([@iskounen](https://github.com/iskounen))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Adam Iskounen ([@iskounen](https://github.com/iskounen))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.207.0 (Wed Sep 25 2024)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -149,7 +149,7 @@ export declare enum AuthModalType {
|
|
|
149
149
|
/**
|
|
150
150
|
* The type of action that opened the authentication modal
|
|
151
151
|
*/
|
|
152
|
-
export type AuthTrigger = "click" | "timed" | "scroll";
|
|
152
|
+
export type AuthTrigger = "click" | "tap" | "timed" | "scroll";
|
|
153
153
|
/**
|
|
154
154
|
* the service the user used to authenticate
|
|
155
155
|
*/
|
|
@@ -1734,21 +1734,25 @@ export interface ClickedNavBar {
|
|
|
1734
1734
|
* ```
|
|
1735
1735
|
* {
|
|
1736
1736
|
* action: "clickedUploadArtwork",
|
|
1737
|
-
*
|
|
1738
|
-
* context_page_owner_type: "demand",
|
|
1739
|
-
* context_page_owner_id: "",
|
|
1737
|
+
* alert_page_rank: 1,
|
|
1740
1738
|
* artist_id: "4212691337420",
|
|
1741
|
-
*
|
|
1739
|
+
* context_module: "alerts-price",
|
|
1740
|
+
* context_page_owner_id: "",
|
|
1741
|
+
* context_page_owner_type: "demand",
|
|
1742
|
+
* partner_search_criteria_id: "123abc",
|
|
1743
|
+
* search_criteria_id: "4212691337420",
|
|
1742
1744
|
* subject: "Upload Artworks"
|
|
1743
1745
|
* }
|
|
1744
1746
|
* ```
|
|
1745
1747
|
*/
|
|
1746
1748
|
export interface ClickedUploadArtwork {
|
|
1747
1749
|
action: ActionType.clickedUploadArtwork;
|
|
1750
|
+
alert_page_rank?: number;
|
|
1751
|
+
artist_id?: string;
|
|
1748
1752
|
context_module: ContextModule;
|
|
1749
|
-
context_page_owner_type: PageOwnerType;
|
|
1750
1753
|
context_page_owner_id?: string;
|
|
1751
|
-
|
|
1754
|
+
context_page_owner_type: PageOwnerType;
|
|
1755
|
+
partner_search_criteria_id?: string;
|
|
1752
1756
|
search_criteria_id?: string;
|
|
1753
1757
|
subject: string;
|
|
1754
1758
|
}
|