You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add conversation part event details for SolidRoad feature requests (#316)
* Add conversation part event details for SolidRoad feature requests
- Add 9 new conversation part schemas with event_details:
- conversation_tags_updated (tags added/removed)
- snoozed (snooze timing with custom_until_time)
- priority_changed (current/previous priority states)
- conversation_sla_applied_by_rule (SLA with definition)
- conversation_sla_applied_by_workflow (SLA with definition)
- conversation_sla_target_missed (SLA breach with states)
- conversation_sla_paused (SLA pause status)
- conversation_sla_unpaused (SLA unpause)
- conversation_sla_removed (SLA removal)
- Add conversation_attribute_updated_by_user schema with previous value tracking
- Update existing attribute update schemas with previous field:
- conversation_attribute_updated_by_admin
- conversation_attribute_updated_by_workflow
Related to intercom/intercom#428476, #430980, #430942
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
* Remove user from response ( it was invalid )
* Revert changes to conversation_attribute_updated_by_workflow schema
Remove the incorrectly added previous field from conversation_attribute_updated_by_workflow -
this feature was never implemented (PRs #432721 and #433432 were closed without merging).
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
* Clean description
---------
Co-authored-by: Claude <[email protected]>
Copy file name to clipboardExpand all lines: descriptions/0/api.intercom.io.yaml
+246-1Lines changed: 246 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20155,8 +20155,37 @@ components:
20155
20155
properties:
20156
20156
name:
20157
20157
type: string
20158
-
description: Value of the CDA updated
20158
+
description: Current value of the CDA updated
20159
20159
example: PROJ-007
20160
+
previous:
20161
+
type: string
20162
+
nullable: true
20163
+
description: Previous value of the CDA
20164
+
example: PROJ-006
20165
+
conversation_attribute_updated_by_user:
20166
+
title: Part type - conversation_attribute_updated_by_user
20167
+
type: object
20168
+
description: Contains details about Custom Data Attributes (CDAs) that were modified by a user for conversation part type <code>conversation_attribute_updated_by_user</code>.
20169
+
properties:
20170
+
attribute:
20171
+
type: object
20172
+
properties:
20173
+
name:
20174
+
type: string
20175
+
description: Name of the CDA updated
20176
+
example: Priority
20177
+
value:
20178
+
type: object
20179
+
properties:
20180
+
name:
20181
+
type: string
20182
+
description: Current value of the CDA updated
20183
+
example: High
20184
+
previous:
20185
+
type: string
20186
+
nullable: true
20187
+
description: Previous value of the CDA (null for older events)
20188
+
example: Medium
20160
20189
custom_action_started:
20161
20190
title: Part type - custom_action_started
20162
20191
type: object
@@ -20281,15 +20310,231 @@ components:
20281
20310
type: string
20282
20311
description: Result of the workflow event
20283
20312
example: Finsihed waiting
20313
+
conversation_tags_updated:
20314
+
title: Part type - conversation_tags_updated
20315
+
type: object
20316
+
description: Contains details about tags that were added or removed from a conversation for conversation part type <code>conversation_tags_updated</code>.
0 commit comments