@artsy/cohesion 4.377.0--canary.723.15425.0 → 4.377.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,15 @@
|
|
|
1
|
+
# v4.377.0 (Tue Jun 30 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: Add Art OS Mailchimp campaign tracking events [#723](https://github.com/artsy/cohesion/pull/723) ([@olerichter00](https://github.com/olerichter00))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Ole ([@olerichter00](https://github.com/olerichter00))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.376.0 (Mon Jun 29 2026)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -7,12 +7,12 @@ import { OsActionType } from ".";
|
|
|
7
7
|
*/
|
|
8
8
|
/**
|
|
9
9
|
* A partner clicks "Connect" or "Cancel" in the account connection modal. The same
|
|
10
|
-
* modal is
|
|
11
|
-
*
|
|
10
|
+
* modal is reused for Mailchimp; `label` identifies the service and
|
|
11
|
+
* `context_page_owner_type` identifies the surface it was opened from.
|
|
12
12
|
*
|
|
13
13
|
* This schema describes events sent to Segment from [[OsClickedConnectModal]]
|
|
14
14
|
*
|
|
15
|
-
* @example
|
|
15
|
+
* @example Connect
|
|
16
16
|
* ```
|
|
17
17
|
* {
|
|
18
18
|
* action: "clickedConnectModal",
|
|
@@ -23,13 +23,13 @@ import { OsActionType } from ".";
|
|
|
23
23
|
* }
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
|
-
* @example
|
|
26
|
+
* @example Cancel
|
|
27
27
|
* ```
|
|
28
28
|
* {
|
|
29
29
|
* action: "clickedConnectModal",
|
|
30
30
|
* context_module: "connectModal",
|
|
31
|
-
* context_page_owner_type: "
|
|
32
|
-
* label: "
|
|
31
|
+
* context_page_owner_type: "studioInstagram",
|
|
32
|
+
* label: "instagram",
|
|
33
33
|
* value: "cancel"
|
|
34
34
|
* }
|
|
35
35
|
* ```
|