@artsy/cohesion 4.101.0 → 4.102.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.102.0 (Tue Feb 21 2023)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - [AS-3677] Adding action type [#400](https://github.com/artsy/cohesion/pull/400) ([@daytavares](https://github.com/daytavares))
6
+
7
+ #### Authors: 1
8
+
9
+ - Dayane Tavares ([@daytavares](https://github.com/daytavares))
10
+
11
+ ---
12
+
1
13
  # v4.101.0 (Mon Feb 20 2023)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -1340,6 +1340,7 @@ export interface ClickedOnPriceDisplayDropdown {
1340
1340
  * @example
1341
1341
  * ```
1342
1342
  * {
1343
+ * action: "clickedConversationsFilter",
1343
1344
  * label: [selected filter all, selected filter new, selected filter replied],
1344
1345
  * context_module: "conversations",
1345
1346
  * context_page_owner_type: "conversation",
@@ -1349,6 +1350,7 @@ export interface ClickedOnPriceDisplayDropdown {
1349
1350
  * ```
1350
1351
  */
1351
1352
  export interface ClickedConversationsFilter {
1353
+ action: ActionType.clickedConversationsFilter;
1352
1354
  label: string;
1353
1355
  context_module: string;
1354
1356
  context_page_owner_type: PageOwnerType;
@@ -1364,6 +1366,7 @@ export interface ClickedConversationsFilter {
1364
1366
  * @example
1365
1367
  * ```
1366
1368
  * {
1369
+ * action: "clickedDismissInquiry"
1367
1370
  * conversation_id: 123456
1368
1371
  * label: [select a reason, cancel dismiss inquiry, dismiss inquiry]
1369
1372
  * reason: [The artwork is no longer available, I already contacted this person, Other]
@@ -1376,6 +1379,7 @@ export interface ClickedConversationsFilter {
1376
1379
  * ```
1377
1380
  */
1378
1381
  export interface ClickedDismissInquiry {
1382
+ action: ActionType.clickedDismissInquiry;
1379
1383
  conversation_id: string;
1380
1384
  label: string;
1381
1385
  reason: string;
@@ -1394,6 +1398,7 @@ export interface ClickedDismissInquiry {
1394
1398
  * @example
1395
1399
  * ```
1396
1400
  * {
1401
+ * action: clickedMarkSpam
1397
1402
  * conversation_id: 123456
1398
1403
  * label: [mark as spam, cancel mark as spam, delete and mark as spam]
1399
1404
  * context_module: "conversations",
@@ -1405,6 +1410,7 @@ export interface ClickedDismissInquiry {
1405
1410
  * ```
1406
1411
  */
1407
1412
  export interface ClickedMarkSpam {
1413
+ action: ActionType.clickedMarkSpam;
1408
1414
  conversation_id: string;
1409
1415
  label: string;
1410
1416
  context_module: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.101.0",
3
+ "version": "4.102.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {