@revturbine/sdk 0.2.58 → 0.2.59

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.
@@ -11131,6 +11131,15 @@ interface PlacementSlotProps<C extends ResolvedContent = ResolvedContent> {
11131
11131
  onSecondaryCtaClick?: () => void;
11132
11132
  /** Callback when user dismisses the placement. */
11133
11133
  onDismiss: () => void;
11134
+ /**
11135
+ * Optional callback when the user chooses "Remind me later" (defer). When
11136
+ * provided, dismissible slots render a defer control beside dismiss; the
11137
+ * placement re-queues and reappears after the remind-later window
11138
+ * (`remind_later_minutes`, default 60) rather than the longer dismiss
11139
+ * cooldown (plan 167 REQ-7). **Additive and optional** — omit it and slots
11140
+ * render exactly as before, with no defer control.
11141
+ */
11142
+ onRemindLater?: () => void;
11134
11143
  /** Whether the placement is currently visible. */
11135
11144
  visible: boolean;
11136
11145
  /** Custom CSS class name for styling overrides. */