@artsy/cohesion 4.355.0 → 4.357.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,36 @@
1
+ # v4.357.0 (Mon Jun 01 2026)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - chore: add invoice ContextModule [#700](https://github.com/artsy/cohesion/pull/700) ([@xander-pero](https://github.com/xander-pero))
6
+
7
+ #### 🐛 Bug Fix
8
+
9
+ - Update cimg/python Docker tag to v3.14 [#696](https://github.com/artsy/cohesion/pull/696) ([@renovate[bot]](https://github.com/renovate[bot]))
10
+
11
+ #### 🏠 Internal
12
+
13
+ - Update dep auto from 2.2.0 to v2.3.0 [#697](https://github.com/artsy/cohesion/pull/697) ([@renovate[bot]](https://github.com/renovate[bot]))
14
+
15
+ #### Authors: 2
16
+
17
+ - [@renovate[bot]](https://github.com/renovate[bot])
18
+ - [@xander-pero](https://github.com/xander-pero)
19
+
20
+ ---
21
+
22
+ # v4.356.0 (Thu May 21 2026)
23
+
24
+ #### 🚀 Enhancement
25
+
26
+ - chore: use new auth method field rather than expanding triggers [#695](https://github.com/artsy/cohesion/pull/695) ([@brainbicycle](https://github.com/brainbicycle))
27
+
28
+ #### Authors: 1
29
+
30
+ - Brian Beckerle ([@brainbicycle](https://github.com/brainbicycle))
31
+
32
+ ---
33
+
1
34
  # v4.355.0 (Mon May 18 2026)
2
35
 
3
36
  #### 🚀 Enhancement
@@ -61,6 +61,7 @@ export interface CreatedAccount {
61
61
  auth_redirect: string;
62
62
  context_module: AuthContextModule;
63
63
  intent: AuthIntent;
64
+ method?: AuthMethod;
64
65
  modal_copy?: string;
65
66
  onboarding: boolean;
66
67
  service: AuthService;
@@ -126,6 +127,7 @@ export interface SuccessfullyLoggedIn {
126
127
  auth_redirect: string;
127
128
  context_module: AuthContextModule;
128
129
  intent: AuthIntent;
130
+ method?: AuthMethod;
129
131
  modal_copy?: string;
130
132
  service: AuthService;
131
133
  trigger: AuthTrigger;
@@ -149,7 +151,11 @@ export declare enum AuthModalType {
149
151
  /**
150
152
  * The type of action that opened the authentication modal
151
153
  */
152
- export type AuthTrigger = "click" | "tap" | "timed" | "scroll" | "one-tap";
154
+ export type AuthTrigger = "click" | "tap" | "timed" | "scroll";
155
+ /**
156
+ * The authentication method or flow used
157
+ */
158
+ export type AuthMethod = "one-tap";
153
159
  /**
154
160
  * the service the user used to authenticate
155
161
  */
@@ -112,6 +112,10 @@ exports.AuthModalType = AuthModalType;
112
112
  AuthModalType["signup"] = "signup";
113
113
  AuthModalType["welcome"] = "welcome";
114
114
  })(AuthModalType || (exports.AuthModalType = AuthModalType = {}));
115
+ /**
116
+ * The authentication method or flow used
117
+ */
118
+
115
119
  /**
116
120
  * the service the user used to authenticate
117
121
  */
@@ -149,6 +149,7 @@ export declare enum ContextModule {
149
149
  infiniteDiscoveryDrawer = "infiniteDiscoveryDrawer",
150
150
  inquiry = "inquiry",
151
151
  intextTooltip = "intextTooltip",
152
+ invoice = "invoice",
152
153
  latestViewingRoomsRail = "latestViewingRoomsRail",
153
154
  liveAuctionRoom = "liveAuctionRoom",
154
155
  liveAuctionsRail = "liveAuctionsRail",
@@ -163,6 +163,7 @@ exports.ContextModule = ContextModule;
163
163
  ContextModule["infiniteDiscoveryDrawer"] = "infiniteDiscoveryDrawer";
164
164
  ContextModule["inquiry"] = "inquiry";
165
165
  ContextModule["intextTooltip"] = "intextTooltip";
166
+ ContextModule["invoice"] = "invoice";
166
167
  ContextModule["latestViewingRoomsRail"] = "latestViewingRoomsRail";
167
168
  ContextModule["liveAuctionRoom"] = "liveAuctionRoom";
168
169
  ContextModule["liveAuctionsRail"] = "liveAuctionsRail";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.355.0",
3
+ "version": "4.357.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {