@artsy/cohesion 4.311.0 → 4.312.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.312.0 (Mon Oct 27 2025)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- chore: remove extra conversation_template_id from payload on CmsQuickReplyClickedCreateNewTemplate [#647](https://github.com/artsy/cohesion/pull/647) ([@mzikherman](https://github.com/mzikherman))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Matt Zikherman ([@mzikherman](https://github.com/mzikherman))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v4.311.0 (Fri Oct 24 2025)
|
|
2
14
|
|
|
3
15
|
#### 🚀 Enhancement
|
|
@@ -70,7 +70,6 @@ export interface CmsQuickReplyDeletedTemplate {
|
|
|
70
70
|
* action: "clickedCreateNewTemplate",
|
|
71
71
|
* context_module: "conversations",
|
|
72
72
|
* context_page_owner_id: "496984",
|
|
73
|
-
* conversation_template_id: "80912749071",
|
|
74
73
|
* }
|
|
75
74
|
* ```
|
|
76
75
|
*/
|
|
@@ -78,7 +77,6 @@ export interface CmsQuickReplyClickedCreateNewTemplate {
|
|
|
78
77
|
action: CmsActionType.clickedCreateNewTemplate;
|
|
79
78
|
context_module: CmsContextModule.conversations;
|
|
80
79
|
context_page_owner_id: string;
|
|
81
|
-
conversation_template_id: string;
|
|
82
80
|
}
|
|
83
81
|
/**
|
|
84
82
|
* User completes the flow and actually creates a new custom template
|