@artsy/cohesion 4.201.0 → 4.202.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.202.0 (Tue Aug 27 2024)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- feat: adding a value for the new first step of the signup flow [#523](https://github.com/artsy/cohesion/pull/523) ([@leodmz](https://github.com/leodmz))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Leo Demazeau ([@leodmz](https://github.com/leodmz))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.201.0 (Fri Aug 23 2024)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -142,7 +142,9 @@ export declare enum AuthModalType {
|
|
|
142
142
|
/** Log in to an existing account */
|
|
143
143
|
login = "login",
|
|
144
144
|
/** Sign up for a new account */
|
|
145
|
-
signup = "signup"
|
|
145
|
+
signup = "signup",
|
|
146
|
+
/** Fill out your email to enter the signup or login flow */
|
|
147
|
+
welcome = "welcome"
|
|
146
148
|
}
|
|
147
149
|
/**
|
|
148
150
|
* The type of action that opened the authentication modal
|
|
@@ -110,6 +110,7 @@ exports.AuthModalType = AuthModalType;
|
|
|
110
110
|
AuthModalType["forgot"] = "forgot";
|
|
111
111
|
AuthModalType["login"] = "login";
|
|
112
112
|
AuthModalType["signup"] = "signup";
|
|
113
|
+
AuthModalType["welcome"] = "welcome";
|
|
113
114
|
})(AuthModalType || (exports.AuthModalType = AuthModalType = {}));
|
|
114
115
|
/**
|
|
115
116
|
* the service the user used to authenticate
|