@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.
- package/dist/common/calendar.d.ts +1 -1
- package/dist/common/messaging.d.ts +1 -1
- package/dist/common/projects.d.ts +1 -1
- package/dist/docs/assets/search.js +1 -1
- package/dist/docs/enums/plot.ActorType.html +4 -4
- package/dist/docs/types/common_calendar.CalendarTool.html +1 -1
- package/dist/docs/types/plot.ActivityOccurrenceUpdate.html +1 -1
- package/dist/docs/types/plot.Actor.html +5 -5
- package/dist/docs/types/plot.ContentType.html +1 -1
- package/dist/docs/types/plot.NewActivity.html +6 -6
- package/dist/docs/types/plot.NewActivityOccurrence.html +6 -5
- package/dist/docs/types/plot.NewActor.html +1 -1
- package/dist/docs/types/plot.NewContact.html +4 -4
- package/dist/docs/types/plot.NewNote.html +5 -5
- package/dist/docs/types/plot.NoteUpdate.html +1 -1
- package/dist/docs/types/plot.PickPriorityConfig.html +2 -2
- package/dist/llm-docs/common/calendar.d.ts +1 -1
- package/dist/llm-docs/common/calendar.js +1 -1
- package/dist/llm-docs/common/messaging.d.ts +1 -1
- package/dist/llm-docs/common/messaging.js +1 -1
- package/dist/llm-docs/common/projects.d.ts +1 -1
- package/dist/llm-docs/common/projects.js +1 -1
- package/dist/llm-docs/plot.d.ts +1 -1
- package/dist/llm-docs/plot.d.ts.map +1 -1
- package/dist/llm-docs/plot.js +1 -1
- package/dist/llm-docs/plot.js.map +1 -1
- package/dist/plot.d.ts +16 -17
- package/dist/plot.d.ts.map +1 -1
- package/dist/plot.js.map +1 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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,
|
|
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,
|
|
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
|