@pygmalionjs/pygmalion 0.5.7 → 0.5.9
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/dist-lib/pygmalion.js +1449 -1438
- package/package.json +1 -1
- package/types.d.ts +6 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -1386,6 +1386,12 @@ export interface SurfaceCandidate {
|
|
|
1386
1386
|
kind: SurfaceDemandKind;
|
|
1387
1387
|
id: string;
|
|
1388
1388
|
frameId?: string;
|
|
1389
|
+
/**
|
|
1390
|
+
* Frame-independent form of the same surface. A verdict on this id answers the
|
|
1391
|
+
* surface in every frame it appears in; a frame-scoped verdict still wins when
|
|
1392
|
+
* the answer differs there.
|
|
1393
|
+
*/
|
|
1394
|
+
matchId?: string;
|
|
1389
1395
|
detail: string;
|
|
1390
1396
|
}
|
|
1391
1397
|
export type SurfaceVerdict =
|