csharpcf25d736 | 1 | namespace IntercomWire; |
| 2 | |
| 3 | /// <summary>Канон <c>event_kinds</c> с <c>sync_default: true</c> (intercom-wire/schemas/v1/event-kinds.json).</summary> |
| 4 | public static class IntercomWireTransportEventKinds |
| 5 | { |
| 6 | public static IReadOnlySet<string> SyncDefault { get; } = new HashSet<string>(StringComparer.Ordinal) |
| 7 | { |
| 8 | "message_added", |
| 9 | "message_completed", |
| 10 | "message_edited", |
| 11 | "thread_forked", |
| 12 | "message_range_related", |
| 13 | }; |
| 14 | } |
| 15 | |
View only · write via MCP/CIDE