pup-recorder 0.1.11 → 0.1.13

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.
@@ -28,6 +28,8 @@ declare type AbortQuery = () => Promise<boolean> | boolean;
28
28
  export { AbortQuery }
29
29
  export { AbortQuery as AbortQuery_alias_1 }
30
30
 
31
+ export declare function advanceVirtualTime(cdp: Debugger, budget: number): Promise<void>;
32
+
31
33
  export declare const app: string | undefined;
32
34
 
33
35
  declare type AsyncTask = () => Promise<void> | void;
@@ -305,6 +307,7 @@ declare const RenderSchema: z.ZodObject<{
305
307
  withAudio: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
306
308
  outDir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
307
309
  useInnerProxy: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
310
+ deterministic: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
308
311
  }, z.core.$strip>;
309
312
  export { RenderSchema }
310
313
  export { RenderSchema as RenderSchema_alias_1 }
@@ -323,6 +326,8 @@ export declare function setInterceptor({ source, window, useInnerProxy, }: Netwo
323
326
 
324
327
  export declare function setupAudioCapture(pcmPath: string): Promise<AudioCapture>;
325
328
 
329
+ export declare function shoot(source: string, options: RenderOptions): Promise<void>;
330
+
326
331
  declare function sleep(ms: number): Promise<void>;
327
332
  export { sleep }
328
333
  export { sleep as sleep_alias_1 }