@artsy/cohesion 4.100.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 +24 -0
- package/dist/Schema/Events/Click.d.ts +6 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
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
|
+
|
|
13
|
+
# v4.101.0 (Mon Feb 20 2023)
|
|
14
|
+
|
|
15
|
+
#### 🚀 Enhancement
|
|
16
|
+
|
|
17
|
+
- Fixing CMS conversation - ClickedConversationsFilter [#399](https://github.com/artsy/cohesion/pull/399) ([@daytavares](https://github.com/daytavares))
|
|
18
|
+
|
|
19
|
+
#### Authors: 1
|
|
20
|
+
|
|
21
|
+
- Dayane Tavares ([@daytavares](https://github.com/daytavares))
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# v4.100.0 (Tue Feb 07 2023)
|
|
2
26
|
|
|
3
27
|
#### 🚀 Enhancement
|
|
@@ -1340,21 +1340,21 @@ 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",
|
|
1346
1347
|
* context_page_owner_id: "60de173a47476c000fd5c4cc"
|
|
1347
|
-
* artwork_id: "60de173a47476c000fd5c4cc"
|
|
1348
1348
|
* partner_id: "35de173a47476c111fd5c4cc"
|
|
1349
1349
|
* }
|
|
1350
1350
|
* ```
|
|
1351
1351
|
*/
|
|
1352
1352
|
export interface ClickedConversationsFilter {
|
|
1353
|
+
action: ActionType.clickedConversationsFilter;
|
|
1353
1354
|
label: string;
|
|
1354
1355
|
context_module: string;
|
|
1355
1356
|
context_page_owner_type: PageOwnerType;
|
|
1356
1357
|
context_page_owner_id?: string;
|
|
1357
|
-
artwork_id: string;
|
|
1358
1358
|
partner_id: string;
|
|
1359
1359
|
}
|
|
1360
1360
|
/**
|
|
@@ -1366,6 +1366,7 @@ export interface ClickedConversationsFilter {
|
|
|
1366
1366
|
* @example
|
|
1367
1367
|
* ```
|
|
1368
1368
|
* {
|
|
1369
|
+
* action: "clickedDismissInquiry"
|
|
1369
1370
|
* conversation_id: 123456
|
|
1370
1371
|
* label: [select a reason, cancel dismiss inquiry, dismiss inquiry]
|
|
1371
1372
|
* reason: [The artwork is no longer available, I already contacted this person, Other]
|
|
@@ -1378,6 +1379,7 @@ export interface ClickedConversationsFilter {
|
|
|
1378
1379
|
* ```
|
|
1379
1380
|
*/
|
|
1380
1381
|
export interface ClickedDismissInquiry {
|
|
1382
|
+
action: ActionType.clickedDismissInquiry;
|
|
1381
1383
|
conversation_id: string;
|
|
1382
1384
|
label: string;
|
|
1383
1385
|
reason: string;
|
|
@@ -1396,6 +1398,7 @@ export interface ClickedDismissInquiry {
|
|
|
1396
1398
|
* @example
|
|
1397
1399
|
* ```
|
|
1398
1400
|
* {
|
|
1401
|
+
* action: clickedMarkSpam
|
|
1399
1402
|
* conversation_id: 123456
|
|
1400
1403
|
* label: [mark as spam, cancel mark as spam, delete and mark as spam]
|
|
1401
1404
|
* context_module: "conversations",
|
|
@@ -1407,6 +1410,7 @@ export interface ClickedDismissInquiry {
|
|
|
1407
1410
|
* ```
|
|
1408
1411
|
*/
|
|
1409
1412
|
export interface ClickedMarkSpam {
|
|
1413
|
+
action: ActionType.clickedMarkSpam;
|
|
1410
1414
|
conversation_id: string;
|
|
1411
1415
|
label: string;
|
|
1412
1416
|
context_module: string;
|