@pygmalionjs/pygmalion 0.7.1 → 0.7.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.
@@ -1,5 +1,5 @@
1
1
  import type { InspectApplyPayload } from './inspect';
2
- import type { EditorTransport } from '../contract/transport.js';
2
+ import type { EditorTransport, TransportCallOptions } from '../contract/transport.js';
3
3
  import type { DesignCodegenData } from './designCompiler';
4
4
  export interface InspectQaArtifactHash {
5
5
  domStructureHash: string;
@@ -61,4 +61,4 @@ export declare function inspectQaFrameIds(payload: InspectApplyPayload, eligible
61
61
  * and strictly normalizes its answer. Artifact paths are accepted only under
62
62
  * the transport's QA artifact prefix and come back resolved for the document.
63
63
  */
64
- export declare function requestInspectQaCapture(transport: EditorTransport, request: InspectQaCaptureRequest): Promise<InspectQaResult>;
64
+ export declare function requestInspectQaCapture(transport: EditorTransport, request: InspectQaCaptureRequest, options?: TransportCallOptions): Promise<InspectQaResult>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pygmalionjs/pygmalion",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Code-backed DOM design sandbox and visual QA editor",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {