@artsy/cohesion 4.134.0 → 4.135.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.135.0 (Thu Jul 20 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- (feat): add modalType option to address validation event [#445](https://github.com/artsy/cohesion/pull/445) ([@TMcMeans](https://github.com/TMcMeans))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- TanjieM ([@TMcMeans](https://github.com/TMcMeans))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.134.0 (Wed Jul 19 2023)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -117,7 +117,9 @@ export interface ErrorMessageViewed {
|
|
|
117
117
|
* context_page_owner_type: "orders-shipping",
|
|
118
118
|
* context_page_owner_id: "57e60c68-a198-431e-8a02-6ecb01e3a99b",
|
|
119
119
|
* user_id: "61bcda16515b038ce5000104"
|
|
120
|
-
* flow: "user adding shipping address"
|
|
120
|
+
* flow: "user adding shipping address",
|
|
121
|
+
* subject: "Check your delivery address",
|
|
122
|
+
option: "review and confirm",
|
|
121
123
|
* }
|
|
122
124
|
* ```
|
|
123
125
|
*
|
|
@@ -129,4 +131,6 @@ export interface ValidationAddressViewed {
|
|
|
129
131
|
context_page_owner_id: string;
|
|
130
132
|
user_id: string;
|
|
131
133
|
flow: string;
|
|
134
|
+
subject: string;
|
|
135
|
+
option: string;
|
|
132
136
|
}
|