@agent-native/core 0.91.0 → 0.91.2

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.
Files changed (219) hide show
  1. package/blueprints/action/crud.md +1 -1
  2. package/blueprints/channel/discord.md +1 -1
  3. package/blueprints/provider/stripe.md +1 -1
  4. package/blueprints/sandbox/docker.md +1 -1
  5. package/corpus/README.md +1 -1
  6. package/corpus/core/CHANGELOG.md +26 -0
  7. package/corpus/core/blueprints/action/crud.md +1 -1
  8. package/corpus/core/blueprints/channel/discord.md +1 -1
  9. package/corpus/core/blueprints/provider/stripe.md +1 -1
  10. package/corpus/core/blueprints/sandbox/docker.md +1 -1
  11. package/corpus/core/package.json +6 -5
  12. package/corpus/core/src/agent/run-manager.ts +23 -2
  13. package/corpus/core/src/agent/run-store.ts +2 -2
  14. package/corpus/core/src/cli/add.ts +1 -1
  15. package/corpus/core/src/cli/create.ts +8 -3
  16. package/corpus/core/src/cli/design-connect.ts +53 -9
  17. package/corpus/core/src/cli/index.ts +5 -4
  18. package/corpus/core/src/client/extensions/ExtensionSlot.tsx +7 -0
  19. package/corpus/core/src/client/session-replay.ts +97 -3
  20. package/corpus/core/src/jobs/scheduler.ts +30 -1
  21. package/corpus/core/src/localization/default-messages.ts +21 -0
  22. package/corpus/core/src/templates/default/app/i18n/ar-SA.ts +21 -0
  23. package/corpus/core/src/templates/default/app/i18n/de-DE.ts +21 -0
  24. package/corpus/core/src/templates/default/app/i18n/en-US.ts +21 -0
  25. package/corpus/core/src/templates/default/app/i18n/es-ES.ts +21 -0
  26. package/corpus/core/src/templates/default/app/i18n/fr-FR.ts +21 -0
  27. package/corpus/core/src/templates/default/app/i18n/hi-IN.ts +20 -0
  28. package/corpus/core/src/templates/default/app/i18n/ja-JP.ts +21 -0
  29. package/corpus/core/src/templates/default/app/i18n/ko-KR.ts +20 -0
  30. package/corpus/core/src/templates/default/app/i18n/pt-BR.ts +21 -0
  31. package/corpus/core/src/templates/default/app/i18n/zh-CN.ts +20 -0
  32. package/corpus/core/src/templates/default/app/i18n/zh-TW.ts +19 -0
  33. package/corpus/core/src/templates/default/package.json +2 -2
  34. package/corpus/core/src/templates/headless/package.json +3 -3
  35. package/corpus/core/src/templates/workspace-core/package.json +6 -6
  36. package/corpus/core/src/templates/workspace-root/package.json +2 -2
  37. package/corpus/core/src/triggers/dispatcher.ts +30 -2
  38. package/corpus/core/src/vite/client.ts +96 -1
  39. package/corpus/templates/analytics/.agents/skills/session-replay/SKILL.md +21 -2
  40. package/corpus/templates/analytics/app/global.css +26 -10
  41. package/corpus/templates/analytics/app/i18n/zh-TW.ts +2 -0
  42. package/corpus/templates/analytics/app/i18n-data.ts +25 -0
  43. package/corpus/templates/analytics/app/pages/sessions/SessionDetailPage.tsx +548 -237
  44. package/corpus/templates/analytics/app/pages/sessions/SessionDevToolsPanel.tsx +285 -294
  45. package/corpus/templates/analytics/changelog/2026-07-08-console-details-expand-inline-under-each-row-and-the-event-t.md +6 -0
  46. package/corpus/templates/analytics/changelog/2026-07-08-session-replay-clamps-ultra-wide-viewports-while-keeping-the.md +6 -0
  47. package/corpus/templates/analytics/changelog/2026-07-08-session-replay-keeps-a-usable-stage-when-dev-tools-is-open-a.md +6 -0
  48. package/corpus/templates/analytics/changelog/2026-07-08-session-replay-resumes-after-scrubbing-and-expands-console-r.md +6 -0
  49. package/corpus/templates/analytics/changelog/2026-07-08-session-replays-wait-for-full-load-keep-a-normal-viewport-an.md +6 -0
  50. package/corpus/templates/analytics/package.json +2 -2
  51. package/corpus/templates/assets/package.json +2 -2
  52. package/corpus/templates/brain/package.json +2 -2
  53. package/corpus/templates/calendar/AGENTS.md +10 -0
  54. package/corpus/templates/calendar/actions/create-event.ts +5 -1
  55. package/corpus/templates/calendar/actions/event-action-helpers.ts +41 -0
  56. package/corpus/templates/calendar/actions/get-attendee-timezones.ts +28 -0
  57. package/corpus/templates/calendar/actions/set-attendee-timezone.ts +68 -0
  58. package/corpus/templates/calendar/app/components/calendar/EventAttendeesSection.tsx +150 -11
  59. package/corpus/templates/calendar/app/components/calendar/EventDetailPanel.tsx +36 -1
  60. package/corpus/templates/calendar/app/components/calendar/EventDetailPopover.tsx +32 -0
  61. package/corpus/templates/calendar/app/hooks/use-attendee-timezones.ts +24 -0
  62. package/corpus/templates/calendar/app/i18n/zh-TW.ts +2 -0
  63. package/corpus/templates/calendar/app/i18n-data.ts +20 -0
  64. package/corpus/templates/calendar/app/lib/attendee-local-time.ts +122 -0
  65. package/corpus/templates/calendar/changelog/2026-07-08-event-details-now-support-extension-widgets-and-you-can-see-.md +6 -0
  66. package/corpus/templates/calendar/changelog/2026-07-08-when-you-invite-guests-to-a-new-event-you-now-appear-in.md +6 -0
  67. package/corpus/templates/calendar/package.json +2 -2
  68. package/corpus/templates/calendar/server/handlers/events.ts +5 -1
  69. package/corpus/templates/calendar/shared/api.ts +6 -0
  70. package/corpus/templates/chat/package.json +2 -2
  71. package/corpus/templates/clips/.agents/skills/meetings/SKILL.md +6 -2
  72. package/corpus/templates/clips/actions/create-meeting.ts +8 -3
  73. package/corpus/templates/clips/actions/list-meetings.ts +31 -3
  74. package/corpus/templates/clips/changelog/2026-07-08-after-finishing-a-desktop-recording-reopening-clips-restor.md +6 -0
  75. package/corpus/templates/clips/changelog/2026-07-08-clips-now-pops-up-to-take-notes-when-you-join-an-adhoc-zoom-.md +6 -0
  76. package/corpus/templates/clips/changelog/2026-07-08-desktop-clip-recordings-are-louder-after-capture-mic-only.md +6 -0
  77. package/corpus/templates/clips/changelog/2026-07-08-meeting-reminders-now-appear-1-minute-before-start-stay-unti.md +6 -0
  78. package/corpus/templates/clips/changelog/2026-07-08-the-desktop-meetings-panel-has-room-for-its-drop-shadow-and-.md +6 -0
  79. package/corpus/templates/clips/chrome-extension/package.json +2 -2
  80. package/corpus/templates/clips/desktop/package.json +2 -2
  81. package/corpus/templates/clips/desktop/src/app.tsx +91 -34
  82. package/corpus/templates/clips/desktop/src/hooks/useMeetingTranscription.ts +15 -5
  83. package/corpus/templates/clips/desktop/src/lib/meeting-notification-timing.ts +83 -0
  84. package/corpus/templates/clips/desktop/src/lib/native-recording-warm.ts +21 -0
  85. package/corpus/templates/clips/desktop/src/lib/recorder.ts +98 -20
  86. package/corpus/templates/clips/desktop/src/overlays/meeting-notification.tsx +174 -50
  87. package/corpus/templates/clips/desktop/src/styles.css +128 -53
  88. package/corpus/templates/clips/desktop/src-tauri/src/adhoc_meetings_watcher.rs +364 -0
  89. package/corpus/templates/clips/desktop/src-tauri/src/clips/mod.rs +1 -1
  90. package/corpus/templates/clips/desktop/src-tauri/src/lib.rs +5 -0
  91. package/corpus/templates/clips/desktop/src-tauri/src/meetings_watcher.rs +91 -11
  92. package/corpus/templates/clips/desktop/src-tauri/src/native_screen.rs +69 -19
  93. package/corpus/templates/clips/desktop/src-tauri/src/native_speech.rs +36 -1
  94. package/corpus/templates/clips/desktop/src-tauri/src/notifications.rs +62 -10
  95. package/corpus/templates/clips/desktop/src-tauri/src/silence_detector.rs +1 -24
  96. package/corpus/templates/clips/desktop/src-tauri/src/util.rs +36 -1
  97. package/corpus/templates/clips/package.json +2 -2
  98. package/corpus/templates/content/actions/_content-database-personal-view.ts +80 -0
  99. package/corpus/templates/content/actions/get-content-database-personal-view.ts +27 -0
  100. package/corpus/templates/content/actions/update-content-database-personal-view.ts +31 -0
  101. package/corpus/templates/content/actions/update-content-database-view.ts +3 -0
  102. package/corpus/templates/content/app/components/editor/DocumentProperties.tsx +1 -1
  103. package/corpus/templates/content/app/components/editor/database/DatabaseView.tsx +2584 -546
  104. package/corpus/templates/content/app/components/editor/database/filter-sort.ts +220 -18
  105. package/corpus/templates/content/app/hooks/use-content-database.ts +32 -0
  106. package/corpus/templates/content/app/i18n/zh-TW.ts +16 -0
  107. package/corpus/templates/content/app/i18n-data.ts +154 -0
  108. package/corpus/templates/content/changelog/2026-07-08-database-filters-now-support-notion-style-reset-save-for-eve.md +6 -0
  109. package/corpus/templates/content/changelog/2026-07-08-date-filters-can-now-target-a-between-range.md +6 -0
  110. package/corpus/templates/content/package.json +2 -2
  111. package/corpus/templates/content/parity/matrix.md +1 -1
  112. package/corpus/templates/content/parity/matrix.ts +2 -0
  113. package/corpus/templates/content/shared/api.ts +24 -0
  114. package/corpus/templates/design/AGENTS.md +9 -0
  115. package/corpus/templates/design/actions/request-localhost-write-consent.ts +141 -0
  116. package/corpus/templates/design/app/components/design/DesignCanvas.tsx +13 -19
  117. package/corpus/templates/design/package.json +2 -2
  118. package/corpus/templates/design/server/lib/verify-write-grant.ts +4 -2
  119. package/corpus/templates/dispatch/app/i18n/zh-TW.ts +34 -1
  120. package/corpus/templates/dispatch/app/i18n-data.ts +387 -10
  121. package/corpus/templates/dispatch/app/routes/automations.tsx +1 -0
  122. package/corpus/templates/dispatch/changelog/2026-07-08-added-an-automations-page-to-review-pause-and-create.md +6 -0
  123. package/corpus/templates/dispatch/changelog/2026-07-08-destinations-now-shows-outbound-delivery-queue-health.md +6 -0
  124. package/corpus/templates/dispatch/package.json +2 -2
  125. package/corpus/templates/forms/package.json +2 -2
  126. package/corpus/templates/macros/package.json +2 -2
  127. package/corpus/templates/mail/app/hooks/use-emails.ts +56 -44
  128. package/corpus/templates/mail/app/lib/gmail-mutation-queue.ts +325 -0
  129. package/corpus/templates/mail/changelog/2026-07-08-rapid-archive-and-mark-read-now-batch-gmail-updates-so-the-i.md +6 -0
  130. package/corpus/templates/mail/package.json +2 -2
  131. package/corpus/templates/plan/package.json +2 -2
  132. package/corpus/templates/slides/app/components/editor/ImageDropPromptPopover.tsx +46 -29
  133. package/corpus/templates/slides/app/context/DeckContext.tsx +45 -18
  134. package/corpus/templates/slides/app/i18n/ar-SA.ts +4 -0
  135. package/corpus/templates/slides/app/i18n/de-DE.ts +4 -0
  136. package/corpus/templates/slides/app/i18n/en-US.ts +4 -0
  137. package/corpus/templates/slides/app/i18n/es-ES.ts +4 -0
  138. package/corpus/templates/slides/app/i18n/fr-FR.ts +4 -0
  139. package/corpus/templates/slides/app/i18n/hi-IN.ts +4 -0
  140. package/corpus/templates/slides/app/i18n/ja-JP.ts +4 -0
  141. package/corpus/templates/slides/app/i18n/ko-KR.ts +4 -0
  142. package/corpus/templates/slides/app/i18n/pt-BR.ts +4 -0
  143. package/corpus/templates/slides/app/i18n/zh-CN.ts +4 -0
  144. package/corpus/templates/slides/app/i18n/zh-TW.ts +4 -0
  145. package/corpus/templates/slides/app/lib/image-drop-to-agent.ts +115 -0
  146. package/corpus/templates/slides/app/pages/DeckEditor.tsx +22 -13
  147. package/corpus/templates/slides/changelog/2026-07-08-dropping-an-image-onto-a-slide-and-sending-it-to-the-agent-w.md +6 -0
  148. package/corpus/templates/slides/changelog/2026-07-08-undo-works-after-the-agent-edits-a-slide-so-you-can-reverse.md +6 -0
  149. package/corpus/templates/slides/package.json +2 -2
  150. package/dist/agent/run-manager.d.ts.map +1 -1
  151. package/dist/agent/run-manager.js +23 -2
  152. package/dist/agent/run-manager.js.map +1 -1
  153. package/dist/agent/run-store.js +2 -2
  154. package/dist/agent/run-store.js.map +1 -1
  155. package/dist/catalog.json +2 -2
  156. package/dist/cli/add.js +1 -1
  157. package/dist/cli/add.js.map +1 -1
  158. package/dist/cli/create.d.ts.map +1 -1
  159. package/dist/cli/create.js +8 -3
  160. package/dist/cli/create.js.map +1 -1
  161. package/dist/cli/design-connect.d.ts.map +1 -1
  162. package/dist/cli/design-connect.js +40 -10
  163. package/dist/cli/design-connect.js.map +1 -1
  164. package/dist/cli/index.js +5 -4
  165. package/dist/cli/index.js.map +1 -1
  166. package/dist/client/extensions/ExtensionSlot.js +6 -0
  167. package/dist/client/extensions/ExtensionSlot.js.map +1 -1
  168. package/dist/client/session-replay.d.ts +8 -0
  169. package/dist/client/session-replay.d.ts.map +1 -1
  170. package/dist/client/session-replay.js +80 -3
  171. package/dist/client/session-replay.js.map +1 -1
  172. package/dist/collab/routes.d.ts +1 -1
  173. package/dist/jobs/scheduler.js +26 -1
  174. package/dist/jobs/scheduler.js.map +1 -1
  175. package/dist/localization/default-messages.d.ts +19 -0
  176. package/dist/localization/default-messages.d.ts.map +1 -1
  177. package/dist/localization/default-messages.js +19 -0
  178. package/dist/localization/default-messages.js.map +1 -1
  179. package/dist/notifications/routes.d.ts +1 -1
  180. package/dist/observability/routes.d.ts +1 -1
  181. package/dist/provider-api/corpus-jobs.d.ts +2 -2
  182. package/dist/resources/handlers.d.ts +1 -1
  183. package/dist/server/agent-engine-api-key-route.d.ts +1 -1
  184. package/dist/templates/default/app/i18n/ar-SA.ts +21 -0
  185. package/dist/templates/default/app/i18n/de-DE.ts +21 -0
  186. package/dist/templates/default/app/i18n/en-US.ts +21 -0
  187. package/dist/templates/default/app/i18n/es-ES.ts +21 -0
  188. package/dist/templates/default/app/i18n/fr-FR.ts +21 -0
  189. package/dist/templates/default/app/i18n/hi-IN.ts +20 -0
  190. package/dist/templates/default/app/i18n/ja-JP.ts +21 -0
  191. package/dist/templates/default/app/i18n/ko-KR.ts +20 -0
  192. package/dist/templates/default/app/i18n/pt-BR.ts +21 -0
  193. package/dist/templates/default/app/i18n/zh-CN.ts +20 -0
  194. package/dist/templates/default/app/i18n/zh-TW.ts +19 -0
  195. package/dist/templates/default/package.json +2 -2
  196. package/dist/templates/headless/package.json +3 -3
  197. package/dist/templates/workspace-core/package.json +6 -6
  198. package/dist/templates/workspace-root/package.json +2 -2
  199. package/dist/triggers/dispatcher.js +27 -2
  200. package/dist/triggers/dispatcher.js.map +1 -1
  201. package/dist/vite/client.d.ts.map +1 -1
  202. package/dist/vite/client.js +70 -1
  203. package/dist/vite/client.js.map +1 -1
  204. package/package.json +7 -6
  205. package/src/templates/default/app/i18n/ar-SA.ts +21 -0
  206. package/src/templates/default/app/i18n/de-DE.ts +21 -0
  207. package/src/templates/default/app/i18n/en-US.ts +21 -0
  208. package/src/templates/default/app/i18n/es-ES.ts +21 -0
  209. package/src/templates/default/app/i18n/fr-FR.ts +21 -0
  210. package/src/templates/default/app/i18n/hi-IN.ts +20 -0
  211. package/src/templates/default/app/i18n/ja-JP.ts +21 -0
  212. package/src/templates/default/app/i18n/ko-KR.ts +20 -0
  213. package/src/templates/default/app/i18n/pt-BR.ts +21 -0
  214. package/src/templates/default/app/i18n/zh-CN.ts +20 -0
  215. package/src/templates/default/app/i18n/zh-TW.ts +19 -0
  216. package/src/templates/default/package.json +2 -2
  217. package/src/templates/headless/package.json +3 -3
  218. package/src/templates/workspace-core/package.json +6 -6
  219. package/src/templates/workspace-root/package.json +2 -2
@@ -89,8 +89,27 @@ agent answers about browser recordings in the Analytics template.
89
89
  - The `/sessions/:recordingId` replay player has a Dev Tools toggle that opens
90
90
  a panel with Console and Network tabs: filter chips, search, an error-count
91
91
  badge, and playback-time highlighting.
92
- - Rows are Jump-to-seek: clicking one seeks the player to that moment. Extend
93
- this panel instead of adding a separate debugging surface.
92
+ - Rows expand inline under the selected line (Chrome-style). Expanding a row
93
+ does not seek; use Jump to to move the playhead. Extend this panel instead of
94
+ adding a separate debugging surface.
95
+
96
+ ## Playback Viewer
97
+
98
+ - Wait for all replay chunks (`isComplete`) before constructing the rrweb
99
+ `Replayer`. Progressive chunk publishes should only update the loading bar;
100
+ rebuilding the player mid-load desyncs the scrubber and playhead.
101
+ - Prefer the latest sane Meta / ViewportResize frame for stage dimensions.
102
+ Out-of-range aspect ratios are clamped (preserve height, shrink width) before
103
+ handing events to rrweb so the stage does not collapse into an ultra-wide
104
+ ribbon and the recorded DOM stays roughly aligned. Capture also clamps the
105
+ same frames in `@agent-native/core` so new recordings never store absurd
106
+ Meta widths.
107
+ - The event timeline soft-highlights the active marker, auto-scrolls it into
108
+ view (pausing briefly after manual scroll), and supports search. It appears
109
+ beside the player from ~880px content width upward.
110
+ - Dev Tools height is capped so the replay stage never collapses into a ribbon
111
+ on short viewports; the scrubber playhead stays visually distinct from red
112
+ error marker dots.
94
113
 
95
114
  ## Debugging A User-Reported Bug
96
115
 
@@ -337,23 +337,33 @@
337
337
  opacity: 0.55;
338
338
  }
339
339
 
340
+ /* Keep the playhead visually distinct from red console-error marker dots on
341
+ the scrubber track — those markers used to look like a second thumb. */
340
342
  .an-replay-scrub::-webkit-slider-thumb {
341
- width: 0.75rem;
342
- height: 0.75rem;
343
+ width: 0.875rem;
344
+ height: 0.875rem;
343
345
  appearance: none;
344
346
  border: 2px solid hsl(var(--background));
345
347
  border-radius: 9999px;
346
- background: hsl(var(--primary));
347
- box-shadow: 0 0 0 1px hsl(var(--border));
348
+ background: hsl(217 91% 60%);
349
+ box-shadow:
350
+ 0 0 0 1px hsl(217 91% 60% / 0.55),
351
+ 0 1px 2px hsl(0 0% 0% / 0.35);
352
+ position: relative;
353
+ z-index: 40;
348
354
  }
349
355
 
350
356
  .an-replay-scrub::-moz-range-thumb {
351
- width: 0.75rem;
352
- height: 0.75rem;
357
+ width: 0.875rem;
358
+ height: 0.875rem;
353
359
  border: 2px solid hsl(var(--background));
354
360
  border-radius: 9999px;
355
- background: hsl(var(--primary));
356
- box-shadow: 0 0 0 1px hsl(var(--border));
361
+ background: hsl(217 91% 60%);
362
+ box-shadow:
363
+ 0 0 0 1px hsl(217 91% 60% / 0.55),
364
+ 0 1px 2px hsl(0 0% 0% / 0.35);
365
+ position: relative;
366
+ z-index: 40;
357
367
  }
358
368
 
359
369
  .dark
@@ -570,9 +580,9 @@
570
580
  }
571
581
  }
572
582
 
573
- @container analytics-session-detail (min-width: 1040px) {
583
+ @container analytics-session-detail (min-width: 880px) {
574
584
  .analytics-session-detail-workbench {
575
- grid-template-columns: minmax(0, 1fr) 330px;
585
+ grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
576
586
  }
577
587
 
578
588
  .analytics-session-detail-timeline {
@@ -580,6 +590,12 @@
580
590
  }
581
591
  }
582
592
 
593
+ @container analytics-session-detail (min-width: 1200px) {
594
+ .analytics-session-detail-workbench {
595
+ grid-template-columns: minmax(0, 1fr) 330px;
596
+ }
597
+ }
598
+
583
599
  /* The dashboard grid responds to the available content width — which shrinks
584
600
  when the agent sidebar is open — not the viewport. Rows are rendered
585
601
  explicitly so deleting a card only expands the remaining cards in that row. */
@@ -964,6 +964,8 @@ const messages = {
964
964
  timeline: "事件時間線",
965
965
  replayTimeline: "回放時間線",
966
966
  timelineDescription: "顯示 {{count}} / {{total}} 個有用事件。",
967
+ timelineSearch: "搜尋事件...",
968
+ timelineNoMatches: "沒有符合目前搜尋的時間線事件。",
967
969
  noTimelineEvents: "未找到時間線標記",
968
970
  sequence: "Sequence",
969
971
  size: "Size",
@@ -1006,6 +1006,8 @@ const enUS = {
1006
1006
  timeline: "Event timeline",
1007
1007
  replayTimeline: "Replay timeline",
1008
1008
  timelineDescription: "Showing {{count}} of {{total}} useful events.",
1009
+ timelineSearch: "Search events...",
1010
+ timelineNoMatches: "No timeline events match the current search.",
1009
1011
  noTimelineEvents: "No timeline markers found",
1010
1012
  sequence: "Sequence",
1011
1013
  size: "Size",
@@ -8164,6 +8166,8 @@ const translatedSessionReplayTranslations = {
8164
8166
  "用于重建此回放的受控分块。提供商 URL 保持私有。",
8165
8167
  timeline: "事件时间线",
8166
8168
  timelineDescription: "显示 {{count}} / {{total}} 个有用事件。",
8169
+ timelineSearch: "搜索事件...",
8170
+ timelineNoMatches: "没有符合当前搜索的时间线事件。",
8167
8171
  started: "开始",
8168
8172
  signedIn: "已登录",
8169
8173
  anonymous: "匿名",
@@ -8287,6 +8291,9 @@ const translatedSessionReplayTranslations = {
8287
8291
  "Fragmentos con acceso controlado usados para reconstruir esta reproducción. Las URL del proveedor permanecen privadas.",
8288
8292
  timeline: "Línea de tiempo de eventos",
8289
8293
  timelineDescription: "Mostrando {{count}} de {{total}} eventos útiles.",
8294
+ timelineSearch: "Buscar eventos...",
8295
+ timelineNoMatches:
8296
+ "Ningún evento de la línea de tiempo coincide con la búsqueda actual.",
8290
8297
  started: "Inicio",
8291
8298
  signedIn: "Con sesión iniciada",
8292
8299
  anonymous: "Anónimo",
@@ -8412,6 +8419,9 @@ const translatedSessionReplayTranslations = {
8412
8419
  timeline: "Chronologie des événements",
8413
8420
  timelineDescription:
8414
8421
  "Affichage de {{count}} événements utiles sur {{total}}.",
8422
+ timelineSearch: "Rechercher des événements...",
8423
+ timelineNoMatches:
8424
+ "Aucun événement de la chronologie ne correspond à la recherche actuelle.",
8415
8425
  started: "Début",
8416
8426
  signedIn: "Connecté",
8417
8427
  anonymous: "Anonyme",
@@ -8536,6 +8546,9 @@ const translatedSessionReplayTranslations = {
8536
8546
  timeline: "Ereignis-Timeline",
8537
8547
  timelineDescription:
8538
8548
  "{{count}} von {{total}} nützlichen Ereignissen werden angezeigt.",
8549
+ timelineSearch: "Ereignisse suchen...",
8550
+ timelineNoMatches:
8551
+ "Keine Timeline-Ereignisse entsprechen der aktuellen Suche.",
8539
8552
  started: "Gestartet",
8540
8553
  signedIn: "Angemeldet",
8541
8554
  anonymous: "Anonym",
@@ -8659,6 +8672,9 @@ const translatedSessionReplayTranslations = {
8659
8672
  timeline: "イベントタイムライン",
8660
8673
  timelineDescription:
8661
8674
  "有用なイベント {{count}} / {{total}} 件を表示しています。",
8675
+ timelineSearch: "イベントを検索...",
8676
+ timelineNoMatches:
8677
+ "現在の検索に一致するタイムラインイベントはありません。",
8662
8678
  started: "開始",
8663
8679
  signedIn: "サインイン済み",
8664
8680
  anonymous: "匿名",
@@ -8781,6 +8797,8 @@ const translatedSessionReplayTranslations = {
8781
8797
  timeline: "이벤트 타임라인",
8782
8798
  timelineDescription:
8783
8799
  "유용한 이벤트 {{count}} / {{total}}개를 표시합니다.",
8800
+ timelineSearch: "이벤트 검색...",
8801
+ timelineNoMatches: "현재 검색과 일치하는 타임라인 이벤트가 없습니다.",
8784
8802
  started: "시작",
8785
8803
  signedIn: "로그인됨",
8786
8804
  anonymous: "익명",
@@ -8903,6 +8921,9 @@ const translatedSessionReplayTranslations = {
8903
8921
  "Blocos com escopo usados para reconstruir este replay. As URLs do provedor permanecem privadas.",
8904
8922
  timeline: "Linha do tempo de eventos",
8905
8923
  timelineDescription: "Mostrando {{count}} de {{total}} eventos úteis.",
8924
+ timelineSearch: "Pesquisar eventos...",
8925
+ timelineNoMatches:
8926
+ "Nenhum evento da linha do tempo corresponde à pesquisa atual.",
8906
8927
  started: "Início",
8907
8928
  signedIn: "Logado",
8908
8929
  anonymous: "Anônimo",
@@ -9023,6 +9044,8 @@ const translatedSessionReplayTranslations = {
9023
9044
  "इस रीप्ले को फिर से बनाने के लिए उपयोग किए गए स्कोप्ड चंक। प्रदाता URL निजी रहते हैं।",
9024
9045
  timeline: "इवेंट टाइमलाइन",
9025
9046
  timelineDescription: "{{total}} में से {{count}} उपयोगी इवेंट दिखाए जा रहे हैं।",
9047
+ timelineSearch: "इवेंट खोजें...",
9048
+ timelineNoMatches: "वर्तमान खोज से कोई टाइमलाइन इवेंट मेल नहीं खाता।",
9026
9049
  started: "शुरू हुआ",
9027
9050
  signedIn: "साइन इन",
9028
9051
  anonymous: "अनाम",
@@ -9143,6 +9166,8 @@ const translatedSessionReplayTranslations = {
9143
9166
  "مقاطع محددة النطاق تُستخدم لإعادة بناء هذا التسجيل. تبقى عناوين URL الخاصة بالمزوّد خاصة.",
9144
9167
  timeline: "الخط الزمني للأحداث",
9145
9168
  timelineDescription: "عرض {{count}} من {{total}} أحداث مفيدة.",
9169
+ timelineSearch: "البحث عن الأحداث...",
9170
+ timelineNoMatches: "لا توجد أحداث في الخط الزمني تطابق البحث الحالي.",
9146
9171
  started: "بدأت",
9147
9172
  signedIn: "تم تسجيل الدخول",
9148
9173
  anonymous: "مجهول",