@plotday/twister 0.32.0 → 0.32.1

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.
@@ -169,7 +169,7 @@ export type CalendarTool = {
169
169
  * - Use Note.key for event details (description, attendees, etc.) to enable upserts
170
170
  * - No manual ID tracking needed - Plot handles deduplication automatically
171
171
  * - Send NewActivityWithNotes for all events (creates new or updates existing)
172
- * - Set activity.unread = false for initial sync, true for incremental updates
172
+ * - Set activity.unread = false for initial sync, omit for incremental updates
173
173
  *
174
174
  * **Alternative** (Strategy 3 - Advanced cases):
175
175
  * - Use Uuid.Generate() and store ID mappings when creating multiple activities per event
@@ -73,7 +73,7 @@ export type MessagingTool = {
73
73
  * - Each message becomes a separate note with unique key for upserts
74
74
  * - No manual ID tracking needed - Plot handles deduplication automatically
75
75
  * - Send NewActivityWithNotes for all threads (creates new or updates existing)
76
- * - Set activity.unread = false for initial sync, true for incremental updates
76
+ * - Set activity.unread = false for initial sync, omit for incremental updates
77
77
  *
78
78
  * **Alternative** (Strategy 3 - Advanced cases):
79
79
  * - Use Uuid.Generate() and store ID mappings when creating multiple activities per thread
@@ -75,7 +75,7 @@ export type ProjectTool = {
75
75
  * - key: "comment-{commentId}" for individual comments (unique per comment)
76
76
  * - No manual ID tracking needed - Plot handles deduplication automatically
77
77
  * - Send NewActivityWithNotes for all issues (creates new or updates existing)
78
- * - Set activity.unread = false for initial sync, true for incremental updates
78
+ * - Set activity.unread = false for initial sync, omit for incremental updates
79
79
  *
80
80
  * **Alternative** (Strategy 3 - Advanced cases):
81
81
  * - Use Uuid.Generate() and store ID mappings when creating multiple activities per issue