@artsy/cohesion 4.313.0 → 4.315.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.
@@ -0,0 +1,9 @@
1
+ name: ☢️ Conventional Commits Check
2
+
3
+ on:
4
+ pull_request:
5
+ types: [opened, edited]
6
+
7
+ jobs:
8
+ run-conventional-commits-check:
9
+ uses: artsy/duchamp/.github/workflows/conventional-commits-check.yml@main
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v4.315.0 (Fri Oct 31 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - feat: add conventional commit github action [#650](https://github.com/artsy/cohesion/pull/650) ([@amonkhouse](https://github.com/amonkhouse))
6
+
7
+ #### Authors: 1
8
+
9
+ - Amy Monkhouse ([@amonkhouse](https://github.com/amonkhouse))
10
+
11
+ ---
12
+
13
+ # v4.314.0 (Fri Oct 31 2025)
14
+
15
+ #### 🚀 Enhancement
16
+
17
+ - chore: add schema for clicking to see message examples in quick replies [#649](https://github.com/artsy/cohesion/pull/649) ([@mzikherman](https://github.com/mzikherman))
18
+
19
+ #### Authors: 1
20
+
21
+ - Matt Zikherman ([@mzikherman](https://github.com/mzikherman))
22
+
23
+ ---
24
+
1
25
  # v4.313.0 (Thu Oct 30 2025)
2
26
 
3
27
  #### 🚀 Enhancement
@@ -160,7 +160,24 @@ export interface CmsQuickReplyEditedTemplate {
160
160
  context_page_owner_id: string;
161
161
  conversation_template_id: string;
162
162
  }
163
+ /**
164
+ * User clicks "See message examples" to view example templates
165
+ *
166
+ * @example
167
+ * ```
168
+ * {
169
+ * action: "clickedSeeMessageExamples",
170
+ * context_module: "conversations",
171
+ * context_page_owner_id: "496984",
172
+ * }
173
+ * ```
174
+ */
175
+ export interface CmsQuickReplyClickedSeeMessageExamples {
176
+ action: CmsActionType.clickedSeeMessageExamples;
177
+ context_module: CmsContextModule.conversations;
178
+ context_page_owner_id: string;
179
+ }
163
180
  /**
164
181
  * Union type of all CMS Quick Reply events
165
182
  */
166
- export type CmsQuickReplyFlow = CmsQuickReplyOpenedMenu | CmsQuickReplyClickedDeleteTemplate | CmsQuickReplyDeletedTemplate | CmsQuickReplyClickedCreateNewTemplate | CmsQuickReplyCreatedNewTemplate | CmsQuickReplySavedExampleTemplate | CmsQuickReplyClickedEditTemplate | CmsQuickReplyEditedTemplate;
183
+ export type CmsQuickReplyFlow = CmsQuickReplyOpenedMenu | CmsQuickReplyClickedDeleteTemplate | CmsQuickReplyDeletedTemplate | CmsQuickReplyClickedCreateNewTemplate | CmsQuickReplyCreatedNewTemplate | CmsQuickReplySavedExampleTemplate | CmsQuickReplyClickedEditTemplate | CmsQuickReplyEditedTemplate | CmsQuickReplyClickedSeeMessageExamples;
@@ -170,6 +170,10 @@ export declare enum CmsActionType {
170
170
  * Corresponds to {@link CmsQuickReplyFlow}
171
171
  */
172
172
  savedExampleTemplate = "savedExampleTemplate",
173
+ /**
174
+ * Corresponds to {@link CmsQuickReplyFlow}
175
+ */
176
+ clickedSeeMessageExamples = "clickedSeeMessageExamples",
173
177
  /**
174
178
  * Corresponds to {@link CmsArtworkFilter}
175
179
  */
@@ -58,6 +58,7 @@ exports.CmsActionType = CmsActionType;
58
58
  CmsActionType["editedTemplate"] = "editedTemplate";
59
59
  CmsActionType["openedMenu"] = "openedMenu";
60
60
  CmsActionType["savedExampleTemplate"] = "savedExampleTemplate";
61
+ CmsActionType["clickedSeeMessageExamples"] = "clickedSeeMessageExamples";
61
62
  CmsActionType["dragAndDrop"] = "drag and drop";
62
63
  CmsActionType["shownSuccessfullyUploadedImages"] = "shownSuccessfullyUploadedImages";
63
64
  CmsActionType["shownInvalidImagesFormat"] = "shownInvalidImagesFormat";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/cohesion",
3
- "version": "4.313.0",
3
+ "version": "4.315.0",
4
4
  "description": "Analytics schema",
5
5
  "main": "dist/index.js",
6
6
  "publishConfig": {