@directive-run/ai 0.5.0 → 0.8.0

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.
@@ -678,7 +678,7 @@ declare function createDebugTimeline(options?: DebugTimelineOptions): DebugTimel
678
678
  * @example
679
679
  * ```typescript
680
680
  * const timeline = createDebugTimeline();
681
- * const plugin = createDebugTimelinePlugin(timeline, () => system.debug?.currentIndex ?? null);
681
+ * const plugin = createDebugTimelinePlugin(timeline, () => system.history?.currentIndex ?? null);
682
682
  * ```
683
683
  */
684
684
  declare function createDebugTimelinePlugin(timeline: DebugTimeline, getSnapshotId: () => number | null): Plugin;
@@ -678,7 +678,7 @@ declare function createDebugTimeline(options?: DebugTimelineOptions): DebugTimel
678
678
  * @example
679
679
  * ```typescript
680
680
  * const timeline = createDebugTimeline();
681
- * const plugin = createDebugTimelinePlugin(timeline, () => system.debug?.currentIndex ?? null);
681
+ * const plugin = createDebugTimelinePlugin(timeline, () => system.history?.currentIndex ?? null);
682
682
  * ```
683
683
  */
684
684
  declare function createDebugTimelinePlugin(timeline: DebugTimeline, getSnapshotId: () => number | null): Plugin;