@wyxos/vibe 5.1.0 → 5.2.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/lib/core/autofill.d.ts +2 -0
- package/lib/core/exactMediaRemovalController.d.ts +2 -0
- package/lib/core/fill.d.ts +2 -0
- package/lib/core/fillController.d.ts +2 -0
- package/lib/core/initialAutofill.d.ts +3 -1
- package/lib/core/page.d.ts +7 -1
- package/lib/core/pageRequest.d.ts +18 -0
- package/lib/core/removalControllers.d.ts +2 -0
- package/lib/core/removalReconciliationController.d.ts +35 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +677 -492
- package/lib/types.d.ts +5 -0
- package/package.json +1 -1
package/lib/types.d.ts
CHANGED
|
@@ -188,6 +188,10 @@ export interface VibeRequestDelayOptions {
|
|
|
188
188
|
delayMaxMs?: number;
|
|
189
189
|
delayStepMs?: number;
|
|
190
190
|
}
|
|
191
|
+
export interface VibeRemovalReconciliationOptions {
|
|
192
|
+
maxReplayPages?: number;
|
|
193
|
+
pageSize: number;
|
|
194
|
+
}
|
|
191
195
|
export interface VibeFrontendAutofillOptions extends VibeRequestDelayOptions {
|
|
192
196
|
maxAdditionalPages?: VibeAutofillPageLimit;
|
|
193
197
|
pageSize: number;
|
|
@@ -338,6 +342,7 @@ export interface CreateVibeOptions {
|
|
|
338
342
|
onReelMediaChange?: (context: VibeMediaLifecycleContext) => void;
|
|
339
343
|
onStateChange?: (state: VibeState) => void;
|
|
340
344
|
removalHistoryLimit?: number;
|
|
345
|
+
removalReconciliation?: VibeRemovalReconciliationOptions;
|
|
341
346
|
reelAutoAdvance?: VibeReelAutoAdvanceOptions;
|
|
342
347
|
reelInfoSheet?: VibeReelInfoSheetOptions;
|
|
343
348
|
routing?: VibeRoutingOptions;
|