doc-detective-common 4.33.0 → 4.34.0
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/index.cjs +1400 -0
- package/dist/schemas/schemas.json +1400 -0
- package/dist/types/generated/record_v3.d.ts +27 -0
- package/dist/types/generated/record_v3.d.ts.map +1 -1
- package/dist/types/generated/step_v3.d.ts +27 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +54 -0
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -34564,6 +34564,56 @@ var schemas_default = {
|
|
|
34564
34564
|
}
|
|
34565
34565
|
]
|
|
34566
34566
|
},
|
|
34567
|
+
verify: {
|
|
34568
|
+
title: "Recording verify guards",
|
|
34569
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
34570
|
+
type: "object",
|
|
34571
|
+
additionalProperties: false,
|
|
34572
|
+
properties: {
|
|
34573
|
+
minDuration: {
|
|
34574
|
+
type: "number",
|
|
34575
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
34576
|
+
minimum: 0
|
|
34577
|
+
},
|
|
34578
|
+
maxDuration: {
|
|
34579
|
+
type: "number",
|
|
34580
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
34581
|
+
minimum: 0
|
|
34582
|
+
},
|
|
34583
|
+
resolution: {
|
|
34584
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
34585
|
+
anyOf: [
|
|
34586
|
+
{
|
|
34587
|
+
type: "boolean",
|
|
34588
|
+
title: "Verify resolution (boolean)"
|
|
34589
|
+
},
|
|
34590
|
+
{
|
|
34591
|
+
type: "object",
|
|
34592
|
+
title: "Verify resolution (detailed)",
|
|
34593
|
+
additionalProperties: false,
|
|
34594
|
+
required: [
|
|
34595
|
+
"width",
|
|
34596
|
+
"height"
|
|
34597
|
+
],
|
|
34598
|
+
properties: {
|
|
34599
|
+
width: {
|
|
34600
|
+
type: "integer",
|
|
34601
|
+
minimum: 1
|
|
34602
|
+
},
|
|
34603
|
+
height: {
|
|
34604
|
+
type: "integer",
|
|
34605
|
+
minimum: 1
|
|
34606
|
+
}
|
|
34607
|
+
}
|
|
34608
|
+
}
|
|
34609
|
+
]
|
|
34610
|
+
},
|
|
34611
|
+
notBlack: {
|
|
34612
|
+
type: "boolean",
|
|
34613
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
34614
|
+
}
|
|
34615
|
+
}
|
|
34616
|
+
},
|
|
34567
34617
|
checkpoints: {
|
|
34568
34618
|
title: "Recording checkpoints",
|
|
34569
34619
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -34919,6 +34969,56 @@ var schemas_default = {
|
|
|
34919
34969
|
}
|
|
34920
34970
|
]
|
|
34921
34971
|
},
|
|
34972
|
+
verify: {
|
|
34973
|
+
title: "Recording verify guards",
|
|
34974
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
34975
|
+
type: "object",
|
|
34976
|
+
additionalProperties: false,
|
|
34977
|
+
properties: {
|
|
34978
|
+
minDuration: {
|
|
34979
|
+
type: "number",
|
|
34980
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
34981
|
+
minimum: 0
|
|
34982
|
+
},
|
|
34983
|
+
maxDuration: {
|
|
34984
|
+
type: "number",
|
|
34985
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
34986
|
+
minimum: 0
|
|
34987
|
+
},
|
|
34988
|
+
resolution: {
|
|
34989
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
34990
|
+
anyOf: [
|
|
34991
|
+
{
|
|
34992
|
+
type: "boolean",
|
|
34993
|
+
title: "Verify resolution (boolean)"
|
|
34994
|
+
},
|
|
34995
|
+
{
|
|
34996
|
+
type: "object",
|
|
34997
|
+
title: "Verify resolution (detailed)",
|
|
34998
|
+
additionalProperties: false,
|
|
34999
|
+
required: [
|
|
35000
|
+
"width",
|
|
35001
|
+
"height"
|
|
35002
|
+
],
|
|
35003
|
+
properties: {
|
|
35004
|
+
width: {
|
|
35005
|
+
type: "integer",
|
|
35006
|
+
minimum: 1
|
|
35007
|
+
},
|
|
35008
|
+
height: {
|
|
35009
|
+
type: "integer",
|
|
35010
|
+
minimum: 1
|
|
35011
|
+
}
|
|
35012
|
+
}
|
|
35013
|
+
}
|
|
35014
|
+
]
|
|
35015
|
+
},
|
|
35016
|
+
notBlack: {
|
|
35017
|
+
type: "boolean",
|
|
35018
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
35019
|
+
}
|
|
35020
|
+
}
|
|
35021
|
+
},
|
|
34922
35022
|
checkpoints: {
|
|
34923
35023
|
title: "Recording checkpoints",
|
|
34924
35024
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -80286,6 +80386,56 @@ var schemas_default = {
|
|
|
80286
80386
|
}
|
|
80287
80387
|
]
|
|
80288
80388
|
},
|
|
80389
|
+
verify: {
|
|
80390
|
+
title: "Recording verify guards",
|
|
80391
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
80392
|
+
type: "object",
|
|
80393
|
+
additionalProperties: false,
|
|
80394
|
+
properties: {
|
|
80395
|
+
minDuration: {
|
|
80396
|
+
type: "number",
|
|
80397
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
80398
|
+
minimum: 0
|
|
80399
|
+
},
|
|
80400
|
+
maxDuration: {
|
|
80401
|
+
type: "number",
|
|
80402
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
80403
|
+
minimum: 0
|
|
80404
|
+
},
|
|
80405
|
+
resolution: {
|
|
80406
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
80407
|
+
anyOf: [
|
|
80408
|
+
{
|
|
80409
|
+
type: "boolean",
|
|
80410
|
+
title: "Verify resolution (boolean)"
|
|
80411
|
+
},
|
|
80412
|
+
{
|
|
80413
|
+
type: "object",
|
|
80414
|
+
title: "Verify resolution (detailed)",
|
|
80415
|
+
additionalProperties: false,
|
|
80416
|
+
required: [
|
|
80417
|
+
"width",
|
|
80418
|
+
"height"
|
|
80419
|
+
],
|
|
80420
|
+
properties: {
|
|
80421
|
+
width: {
|
|
80422
|
+
type: "integer",
|
|
80423
|
+
minimum: 1
|
|
80424
|
+
},
|
|
80425
|
+
height: {
|
|
80426
|
+
type: "integer",
|
|
80427
|
+
minimum: 1
|
|
80428
|
+
}
|
|
80429
|
+
}
|
|
80430
|
+
}
|
|
80431
|
+
]
|
|
80432
|
+
},
|
|
80433
|
+
notBlack: {
|
|
80434
|
+
type: "boolean",
|
|
80435
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
80436
|
+
}
|
|
80437
|
+
}
|
|
80438
|
+
},
|
|
80289
80439
|
checkpoints: {
|
|
80290
80440
|
title: "Recording checkpoints",
|
|
80291
80441
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -80641,6 +80791,56 @@ var schemas_default = {
|
|
|
80641
80791
|
}
|
|
80642
80792
|
]
|
|
80643
80793
|
},
|
|
80794
|
+
verify: {
|
|
80795
|
+
title: "Recording verify guards",
|
|
80796
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
80797
|
+
type: "object",
|
|
80798
|
+
additionalProperties: false,
|
|
80799
|
+
properties: {
|
|
80800
|
+
minDuration: {
|
|
80801
|
+
type: "number",
|
|
80802
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
80803
|
+
minimum: 0
|
|
80804
|
+
},
|
|
80805
|
+
maxDuration: {
|
|
80806
|
+
type: "number",
|
|
80807
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
80808
|
+
minimum: 0
|
|
80809
|
+
},
|
|
80810
|
+
resolution: {
|
|
80811
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
80812
|
+
anyOf: [
|
|
80813
|
+
{
|
|
80814
|
+
type: "boolean",
|
|
80815
|
+
title: "Verify resolution (boolean)"
|
|
80816
|
+
},
|
|
80817
|
+
{
|
|
80818
|
+
type: "object",
|
|
80819
|
+
title: "Verify resolution (detailed)",
|
|
80820
|
+
additionalProperties: false,
|
|
80821
|
+
required: [
|
|
80822
|
+
"width",
|
|
80823
|
+
"height"
|
|
80824
|
+
],
|
|
80825
|
+
properties: {
|
|
80826
|
+
width: {
|
|
80827
|
+
type: "integer",
|
|
80828
|
+
minimum: 1
|
|
80829
|
+
},
|
|
80830
|
+
height: {
|
|
80831
|
+
type: "integer",
|
|
80832
|
+
minimum: 1
|
|
80833
|
+
}
|
|
80834
|
+
}
|
|
80835
|
+
}
|
|
80836
|
+
]
|
|
80837
|
+
},
|
|
80838
|
+
notBlack: {
|
|
80839
|
+
type: "boolean",
|
|
80840
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
80841
|
+
}
|
|
80842
|
+
}
|
|
80843
|
+
},
|
|
80644
80844
|
checkpoints: {
|
|
80645
80845
|
title: "Recording checkpoints",
|
|
80646
80846
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -106648,6 +106848,56 @@ var schemas_default = {
|
|
|
106648
106848
|
}
|
|
106649
106849
|
]
|
|
106650
106850
|
},
|
|
106851
|
+
verify: {
|
|
106852
|
+
title: "Recording verify guards",
|
|
106853
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
106854
|
+
type: "object",
|
|
106855
|
+
additionalProperties: false,
|
|
106856
|
+
properties: {
|
|
106857
|
+
minDuration: {
|
|
106858
|
+
type: "number",
|
|
106859
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
106860
|
+
minimum: 0
|
|
106861
|
+
},
|
|
106862
|
+
maxDuration: {
|
|
106863
|
+
type: "number",
|
|
106864
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
106865
|
+
minimum: 0
|
|
106866
|
+
},
|
|
106867
|
+
resolution: {
|
|
106868
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
106869
|
+
anyOf: [
|
|
106870
|
+
{
|
|
106871
|
+
type: "boolean",
|
|
106872
|
+
title: "Verify resolution (boolean)"
|
|
106873
|
+
},
|
|
106874
|
+
{
|
|
106875
|
+
type: "object",
|
|
106876
|
+
title: "Verify resolution (detailed)",
|
|
106877
|
+
additionalProperties: false,
|
|
106878
|
+
required: [
|
|
106879
|
+
"width",
|
|
106880
|
+
"height"
|
|
106881
|
+
],
|
|
106882
|
+
properties: {
|
|
106883
|
+
width: {
|
|
106884
|
+
type: "integer",
|
|
106885
|
+
minimum: 1
|
|
106886
|
+
},
|
|
106887
|
+
height: {
|
|
106888
|
+
type: "integer",
|
|
106889
|
+
minimum: 1
|
|
106890
|
+
}
|
|
106891
|
+
}
|
|
106892
|
+
}
|
|
106893
|
+
]
|
|
106894
|
+
},
|
|
106895
|
+
notBlack: {
|
|
106896
|
+
type: "boolean",
|
|
106897
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
106898
|
+
}
|
|
106899
|
+
}
|
|
106900
|
+
},
|
|
106651
106901
|
checkpoints: {
|
|
106652
106902
|
title: "Recording checkpoints",
|
|
106653
106903
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -107003,6 +107253,56 @@ var schemas_default = {
|
|
|
107003
107253
|
}
|
|
107004
107254
|
]
|
|
107005
107255
|
},
|
|
107256
|
+
verify: {
|
|
107257
|
+
title: "Recording verify guards",
|
|
107258
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
107259
|
+
type: "object",
|
|
107260
|
+
additionalProperties: false,
|
|
107261
|
+
properties: {
|
|
107262
|
+
minDuration: {
|
|
107263
|
+
type: "number",
|
|
107264
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
107265
|
+
minimum: 0
|
|
107266
|
+
},
|
|
107267
|
+
maxDuration: {
|
|
107268
|
+
type: "number",
|
|
107269
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
107270
|
+
minimum: 0
|
|
107271
|
+
},
|
|
107272
|
+
resolution: {
|
|
107273
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
107274
|
+
anyOf: [
|
|
107275
|
+
{
|
|
107276
|
+
type: "boolean",
|
|
107277
|
+
title: "Verify resolution (boolean)"
|
|
107278
|
+
},
|
|
107279
|
+
{
|
|
107280
|
+
type: "object",
|
|
107281
|
+
title: "Verify resolution (detailed)",
|
|
107282
|
+
additionalProperties: false,
|
|
107283
|
+
required: [
|
|
107284
|
+
"width",
|
|
107285
|
+
"height"
|
|
107286
|
+
],
|
|
107287
|
+
properties: {
|
|
107288
|
+
width: {
|
|
107289
|
+
type: "integer",
|
|
107290
|
+
minimum: 1
|
|
107291
|
+
},
|
|
107292
|
+
height: {
|
|
107293
|
+
type: "integer",
|
|
107294
|
+
minimum: 1
|
|
107295
|
+
}
|
|
107296
|
+
}
|
|
107297
|
+
}
|
|
107298
|
+
]
|
|
107299
|
+
},
|
|
107300
|
+
notBlack: {
|
|
107301
|
+
type: "boolean",
|
|
107302
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
107303
|
+
}
|
|
107304
|
+
}
|
|
107305
|
+
},
|
|
107006
107306
|
checkpoints: {
|
|
107007
107307
|
title: "Recording checkpoints",
|
|
107008
107308
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -139372,6 +139672,56 @@ var schemas_default = {
|
|
|
139372
139672
|
}
|
|
139373
139673
|
]
|
|
139374
139674
|
},
|
|
139675
|
+
verify: {
|
|
139676
|
+
title: "Recording verify guards",
|
|
139677
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
139678
|
+
type: "object",
|
|
139679
|
+
additionalProperties: false,
|
|
139680
|
+
properties: {
|
|
139681
|
+
minDuration: {
|
|
139682
|
+
type: "number",
|
|
139683
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
139684
|
+
minimum: 0
|
|
139685
|
+
},
|
|
139686
|
+
maxDuration: {
|
|
139687
|
+
type: "number",
|
|
139688
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
139689
|
+
minimum: 0
|
|
139690
|
+
},
|
|
139691
|
+
resolution: {
|
|
139692
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
139693
|
+
anyOf: [
|
|
139694
|
+
{
|
|
139695
|
+
type: "boolean",
|
|
139696
|
+
title: "Verify resolution (boolean)"
|
|
139697
|
+
},
|
|
139698
|
+
{
|
|
139699
|
+
type: "object",
|
|
139700
|
+
title: "Verify resolution (detailed)",
|
|
139701
|
+
additionalProperties: false,
|
|
139702
|
+
required: [
|
|
139703
|
+
"width",
|
|
139704
|
+
"height"
|
|
139705
|
+
],
|
|
139706
|
+
properties: {
|
|
139707
|
+
width: {
|
|
139708
|
+
type: "integer",
|
|
139709
|
+
minimum: 1
|
|
139710
|
+
},
|
|
139711
|
+
height: {
|
|
139712
|
+
type: "integer",
|
|
139713
|
+
minimum: 1
|
|
139714
|
+
}
|
|
139715
|
+
}
|
|
139716
|
+
}
|
|
139717
|
+
]
|
|
139718
|
+
},
|
|
139719
|
+
notBlack: {
|
|
139720
|
+
type: "boolean",
|
|
139721
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
139722
|
+
}
|
|
139723
|
+
}
|
|
139724
|
+
},
|
|
139375
139725
|
checkpoints: {
|
|
139376
139726
|
title: "Recording checkpoints",
|
|
139377
139727
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -139727,6 +140077,56 @@ var schemas_default = {
|
|
|
139727
140077
|
}
|
|
139728
140078
|
]
|
|
139729
140079
|
},
|
|
140080
|
+
verify: {
|
|
140081
|
+
title: "Recording verify guards",
|
|
140082
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
140083
|
+
type: "object",
|
|
140084
|
+
additionalProperties: false,
|
|
140085
|
+
properties: {
|
|
140086
|
+
minDuration: {
|
|
140087
|
+
type: "number",
|
|
140088
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
140089
|
+
minimum: 0
|
|
140090
|
+
},
|
|
140091
|
+
maxDuration: {
|
|
140092
|
+
type: "number",
|
|
140093
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
140094
|
+
minimum: 0
|
|
140095
|
+
},
|
|
140096
|
+
resolution: {
|
|
140097
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
140098
|
+
anyOf: [
|
|
140099
|
+
{
|
|
140100
|
+
type: "boolean",
|
|
140101
|
+
title: "Verify resolution (boolean)"
|
|
140102
|
+
},
|
|
140103
|
+
{
|
|
140104
|
+
type: "object",
|
|
140105
|
+
title: "Verify resolution (detailed)",
|
|
140106
|
+
additionalProperties: false,
|
|
140107
|
+
required: [
|
|
140108
|
+
"width",
|
|
140109
|
+
"height"
|
|
140110
|
+
],
|
|
140111
|
+
properties: {
|
|
140112
|
+
width: {
|
|
140113
|
+
type: "integer",
|
|
140114
|
+
minimum: 1
|
|
140115
|
+
},
|
|
140116
|
+
height: {
|
|
140117
|
+
type: "integer",
|
|
140118
|
+
minimum: 1
|
|
140119
|
+
}
|
|
140120
|
+
}
|
|
140121
|
+
}
|
|
140122
|
+
]
|
|
140123
|
+
},
|
|
140124
|
+
notBlack: {
|
|
140125
|
+
type: "boolean",
|
|
140126
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
140127
|
+
}
|
|
140128
|
+
}
|
|
140129
|
+
},
|
|
139730
140130
|
checkpoints: {
|
|
139731
140131
|
title: "Recording checkpoints",
|
|
139732
140132
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -185094,6 +185494,56 @@ var schemas_default = {
|
|
|
185094
185494
|
}
|
|
185095
185495
|
]
|
|
185096
185496
|
},
|
|
185497
|
+
verify: {
|
|
185498
|
+
title: "Recording verify guards",
|
|
185499
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
185500
|
+
type: "object",
|
|
185501
|
+
additionalProperties: false,
|
|
185502
|
+
properties: {
|
|
185503
|
+
minDuration: {
|
|
185504
|
+
type: "number",
|
|
185505
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
185506
|
+
minimum: 0
|
|
185507
|
+
},
|
|
185508
|
+
maxDuration: {
|
|
185509
|
+
type: "number",
|
|
185510
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
185511
|
+
minimum: 0
|
|
185512
|
+
},
|
|
185513
|
+
resolution: {
|
|
185514
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
185515
|
+
anyOf: [
|
|
185516
|
+
{
|
|
185517
|
+
type: "boolean",
|
|
185518
|
+
title: "Verify resolution (boolean)"
|
|
185519
|
+
},
|
|
185520
|
+
{
|
|
185521
|
+
type: "object",
|
|
185522
|
+
title: "Verify resolution (detailed)",
|
|
185523
|
+
additionalProperties: false,
|
|
185524
|
+
required: [
|
|
185525
|
+
"width",
|
|
185526
|
+
"height"
|
|
185527
|
+
],
|
|
185528
|
+
properties: {
|
|
185529
|
+
width: {
|
|
185530
|
+
type: "integer",
|
|
185531
|
+
minimum: 1
|
|
185532
|
+
},
|
|
185533
|
+
height: {
|
|
185534
|
+
type: "integer",
|
|
185535
|
+
minimum: 1
|
|
185536
|
+
}
|
|
185537
|
+
}
|
|
185538
|
+
}
|
|
185539
|
+
]
|
|
185540
|
+
},
|
|
185541
|
+
notBlack: {
|
|
185542
|
+
type: "boolean",
|
|
185543
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
185544
|
+
}
|
|
185545
|
+
}
|
|
185546
|
+
},
|
|
185097
185547
|
checkpoints: {
|
|
185098
185548
|
title: "Recording checkpoints",
|
|
185099
185549
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -185449,6 +185899,56 @@ var schemas_default = {
|
|
|
185449
185899
|
}
|
|
185450
185900
|
]
|
|
185451
185901
|
},
|
|
185902
|
+
verify: {
|
|
185903
|
+
title: "Recording verify guards",
|
|
185904
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
185905
|
+
type: "object",
|
|
185906
|
+
additionalProperties: false,
|
|
185907
|
+
properties: {
|
|
185908
|
+
minDuration: {
|
|
185909
|
+
type: "number",
|
|
185910
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
185911
|
+
minimum: 0
|
|
185912
|
+
},
|
|
185913
|
+
maxDuration: {
|
|
185914
|
+
type: "number",
|
|
185915
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
185916
|
+
minimum: 0
|
|
185917
|
+
},
|
|
185918
|
+
resolution: {
|
|
185919
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
185920
|
+
anyOf: [
|
|
185921
|
+
{
|
|
185922
|
+
type: "boolean",
|
|
185923
|
+
title: "Verify resolution (boolean)"
|
|
185924
|
+
},
|
|
185925
|
+
{
|
|
185926
|
+
type: "object",
|
|
185927
|
+
title: "Verify resolution (detailed)",
|
|
185928
|
+
additionalProperties: false,
|
|
185929
|
+
required: [
|
|
185930
|
+
"width",
|
|
185931
|
+
"height"
|
|
185932
|
+
],
|
|
185933
|
+
properties: {
|
|
185934
|
+
width: {
|
|
185935
|
+
type: "integer",
|
|
185936
|
+
minimum: 1
|
|
185937
|
+
},
|
|
185938
|
+
height: {
|
|
185939
|
+
type: "integer",
|
|
185940
|
+
minimum: 1
|
|
185941
|
+
}
|
|
185942
|
+
}
|
|
185943
|
+
}
|
|
185944
|
+
]
|
|
185945
|
+
},
|
|
185946
|
+
notBlack: {
|
|
185947
|
+
type: "boolean",
|
|
185948
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
185949
|
+
}
|
|
185950
|
+
}
|
|
185951
|
+
},
|
|
185452
185952
|
checkpoints: {
|
|
185453
185953
|
title: "Recording checkpoints",
|
|
185454
185954
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -232555,6 +233055,56 @@ var schemas_default = {
|
|
|
232555
233055
|
}
|
|
232556
233056
|
]
|
|
232557
233057
|
},
|
|
233058
|
+
verify: {
|
|
233059
|
+
title: "Recording verify guards",
|
|
233060
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
233061
|
+
type: "object",
|
|
233062
|
+
additionalProperties: false,
|
|
233063
|
+
properties: {
|
|
233064
|
+
minDuration: {
|
|
233065
|
+
type: "number",
|
|
233066
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
233067
|
+
minimum: 0
|
|
233068
|
+
},
|
|
233069
|
+
maxDuration: {
|
|
233070
|
+
type: "number",
|
|
233071
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
233072
|
+
minimum: 0
|
|
233073
|
+
},
|
|
233074
|
+
resolution: {
|
|
233075
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
233076
|
+
anyOf: [
|
|
233077
|
+
{
|
|
233078
|
+
type: "boolean",
|
|
233079
|
+
title: "Verify resolution (boolean)"
|
|
233080
|
+
},
|
|
233081
|
+
{
|
|
233082
|
+
type: "object",
|
|
233083
|
+
title: "Verify resolution (detailed)",
|
|
233084
|
+
additionalProperties: false,
|
|
233085
|
+
required: [
|
|
233086
|
+
"width",
|
|
233087
|
+
"height"
|
|
233088
|
+
],
|
|
233089
|
+
properties: {
|
|
233090
|
+
width: {
|
|
233091
|
+
type: "integer",
|
|
233092
|
+
minimum: 1
|
|
233093
|
+
},
|
|
233094
|
+
height: {
|
|
233095
|
+
type: "integer",
|
|
233096
|
+
minimum: 1
|
|
233097
|
+
}
|
|
233098
|
+
}
|
|
233099
|
+
}
|
|
233100
|
+
]
|
|
233101
|
+
},
|
|
233102
|
+
notBlack: {
|
|
233103
|
+
type: "boolean",
|
|
233104
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
233105
|
+
}
|
|
233106
|
+
}
|
|
233107
|
+
},
|
|
232558
233108
|
checkpoints: {
|
|
232559
233109
|
title: "Recording checkpoints",
|
|
232560
233110
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -232910,6 +233460,56 @@ var schemas_default = {
|
|
|
232910
233460
|
}
|
|
232911
233461
|
]
|
|
232912
233462
|
},
|
|
233463
|
+
verify: {
|
|
233464
|
+
title: "Recording verify guards",
|
|
233465
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
233466
|
+
type: "object",
|
|
233467
|
+
additionalProperties: false,
|
|
233468
|
+
properties: {
|
|
233469
|
+
minDuration: {
|
|
233470
|
+
type: "number",
|
|
233471
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
233472
|
+
minimum: 0
|
|
233473
|
+
},
|
|
233474
|
+
maxDuration: {
|
|
233475
|
+
type: "number",
|
|
233476
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
233477
|
+
minimum: 0
|
|
233478
|
+
},
|
|
233479
|
+
resolution: {
|
|
233480
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
233481
|
+
anyOf: [
|
|
233482
|
+
{
|
|
233483
|
+
type: "boolean",
|
|
233484
|
+
title: "Verify resolution (boolean)"
|
|
233485
|
+
},
|
|
233486
|
+
{
|
|
233487
|
+
type: "object",
|
|
233488
|
+
title: "Verify resolution (detailed)",
|
|
233489
|
+
additionalProperties: false,
|
|
233490
|
+
required: [
|
|
233491
|
+
"width",
|
|
233492
|
+
"height"
|
|
233493
|
+
],
|
|
233494
|
+
properties: {
|
|
233495
|
+
width: {
|
|
233496
|
+
type: "integer",
|
|
233497
|
+
minimum: 1
|
|
233498
|
+
},
|
|
233499
|
+
height: {
|
|
233500
|
+
type: "integer",
|
|
233501
|
+
minimum: 1
|
|
233502
|
+
}
|
|
233503
|
+
}
|
|
233504
|
+
}
|
|
233505
|
+
]
|
|
233506
|
+
},
|
|
233507
|
+
notBlack: {
|
|
233508
|
+
type: "boolean",
|
|
233509
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
233510
|
+
}
|
|
233511
|
+
}
|
|
233512
|
+
},
|
|
232913
233513
|
checkpoints: {
|
|
232914
233514
|
title: "Recording checkpoints",
|
|
232915
233515
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -277539,6 +278139,56 @@ var schemas_default = {
|
|
|
277539
278139
|
}
|
|
277540
278140
|
]
|
|
277541
278141
|
},
|
|
278142
|
+
verify: {
|
|
278143
|
+
title: "Recording verify guards",
|
|
278144
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
278145
|
+
type: "object",
|
|
278146
|
+
additionalProperties: false,
|
|
278147
|
+
properties: {
|
|
278148
|
+
minDuration: {
|
|
278149
|
+
type: "number",
|
|
278150
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
278151
|
+
minimum: 0
|
|
278152
|
+
},
|
|
278153
|
+
maxDuration: {
|
|
278154
|
+
type: "number",
|
|
278155
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
278156
|
+
minimum: 0
|
|
278157
|
+
},
|
|
278158
|
+
resolution: {
|
|
278159
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
278160
|
+
anyOf: [
|
|
278161
|
+
{
|
|
278162
|
+
type: "boolean",
|
|
278163
|
+
title: "Verify resolution (boolean)"
|
|
278164
|
+
},
|
|
278165
|
+
{
|
|
278166
|
+
type: "object",
|
|
278167
|
+
title: "Verify resolution (detailed)",
|
|
278168
|
+
additionalProperties: false,
|
|
278169
|
+
required: [
|
|
278170
|
+
"width",
|
|
278171
|
+
"height"
|
|
278172
|
+
],
|
|
278173
|
+
properties: {
|
|
278174
|
+
width: {
|
|
278175
|
+
type: "integer",
|
|
278176
|
+
minimum: 1
|
|
278177
|
+
},
|
|
278178
|
+
height: {
|
|
278179
|
+
type: "integer",
|
|
278180
|
+
minimum: 1
|
|
278181
|
+
}
|
|
278182
|
+
}
|
|
278183
|
+
}
|
|
278184
|
+
]
|
|
278185
|
+
},
|
|
278186
|
+
notBlack: {
|
|
278187
|
+
type: "boolean",
|
|
278188
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
278189
|
+
}
|
|
278190
|
+
}
|
|
278191
|
+
},
|
|
277542
278192
|
checkpoints: {
|
|
277543
278193
|
title: "Recording checkpoints",
|
|
277544
278194
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -277894,6 +278544,56 @@ var schemas_default = {
|
|
|
277894
278544
|
}
|
|
277895
278545
|
]
|
|
277896
278546
|
},
|
|
278547
|
+
verify: {
|
|
278548
|
+
title: "Recording verify guards",
|
|
278549
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
278550
|
+
type: "object",
|
|
278551
|
+
additionalProperties: false,
|
|
278552
|
+
properties: {
|
|
278553
|
+
minDuration: {
|
|
278554
|
+
type: "number",
|
|
278555
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
278556
|
+
minimum: 0
|
|
278557
|
+
},
|
|
278558
|
+
maxDuration: {
|
|
278559
|
+
type: "number",
|
|
278560
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
278561
|
+
minimum: 0
|
|
278562
|
+
},
|
|
278563
|
+
resolution: {
|
|
278564
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
278565
|
+
anyOf: [
|
|
278566
|
+
{
|
|
278567
|
+
type: "boolean",
|
|
278568
|
+
title: "Verify resolution (boolean)"
|
|
278569
|
+
},
|
|
278570
|
+
{
|
|
278571
|
+
type: "object",
|
|
278572
|
+
title: "Verify resolution (detailed)",
|
|
278573
|
+
additionalProperties: false,
|
|
278574
|
+
required: [
|
|
278575
|
+
"width",
|
|
278576
|
+
"height"
|
|
278577
|
+
],
|
|
278578
|
+
properties: {
|
|
278579
|
+
width: {
|
|
278580
|
+
type: "integer",
|
|
278581
|
+
minimum: 1
|
|
278582
|
+
},
|
|
278583
|
+
height: {
|
|
278584
|
+
type: "integer",
|
|
278585
|
+
minimum: 1
|
|
278586
|
+
}
|
|
278587
|
+
}
|
|
278588
|
+
}
|
|
278589
|
+
]
|
|
278590
|
+
},
|
|
278591
|
+
notBlack: {
|
|
278592
|
+
type: "boolean",
|
|
278593
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
278594
|
+
}
|
|
278595
|
+
}
|
|
278596
|
+
},
|
|
277897
278597
|
checkpoints: {
|
|
277898
278598
|
title: "Recording checkpoints",
|
|
277899
278599
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -325484,6 +326184,56 @@ var schemas_default = {
|
|
|
325484
326184
|
}
|
|
325485
326185
|
]
|
|
325486
326186
|
},
|
|
326187
|
+
verify: {
|
|
326188
|
+
title: "Recording verify guards",
|
|
326189
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
326190
|
+
type: "object",
|
|
326191
|
+
additionalProperties: false,
|
|
326192
|
+
properties: {
|
|
326193
|
+
minDuration: {
|
|
326194
|
+
type: "number",
|
|
326195
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
326196
|
+
minimum: 0
|
|
326197
|
+
},
|
|
326198
|
+
maxDuration: {
|
|
326199
|
+
type: "number",
|
|
326200
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
326201
|
+
minimum: 0
|
|
326202
|
+
},
|
|
326203
|
+
resolution: {
|
|
326204
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
326205
|
+
anyOf: [
|
|
326206
|
+
{
|
|
326207
|
+
type: "boolean",
|
|
326208
|
+
title: "Verify resolution (boolean)"
|
|
326209
|
+
},
|
|
326210
|
+
{
|
|
326211
|
+
type: "object",
|
|
326212
|
+
title: "Verify resolution (detailed)",
|
|
326213
|
+
additionalProperties: false,
|
|
326214
|
+
required: [
|
|
326215
|
+
"width",
|
|
326216
|
+
"height"
|
|
326217
|
+
],
|
|
326218
|
+
properties: {
|
|
326219
|
+
width: {
|
|
326220
|
+
type: "integer",
|
|
326221
|
+
minimum: 1
|
|
326222
|
+
},
|
|
326223
|
+
height: {
|
|
326224
|
+
type: "integer",
|
|
326225
|
+
minimum: 1
|
|
326226
|
+
}
|
|
326227
|
+
}
|
|
326228
|
+
}
|
|
326229
|
+
]
|
|
326230
|
+
},
|
|
326231
|
+
notBlack: {
|
|
326232
|
+
type: "boolean",
|
|
326233
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
326234
|
+
}
|
|
326235
|
+
}
|
|
326236
|
+
},
|
|
325487
326237
|
checkpoints: {
|
|
325488
326238
|
title: "Recording checkpoints",
|
|
325489
326239
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -325839,6 +326589,56 @@ var schemas_default = {
|
|
|
325839
326589
|
}
|
|
325840
326590
|
]
|
|
325841
326591
|
},
|
|
326592
|
+
verify: {
|
|
326593
|
+
title: "Recording verify guards",
|
|
326594
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
326595
|
+
type: "object",
|
|
326596
|
+
additionalProperties: false,
|
|
326597
|
+
properties: {
|
|
326598
|
+
minDuration: {
|
|
326599
|
+
type: "number",
|
|
326600
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
326601
|
+
minimum: 0
|
|
326602
|
+
},
|
|
326603
|
+
maxDuration: {
|
|
326604
|
+
type: "number",
|
|
326605
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
326606
|
+
minimum: 0
|
|
326607
|
+
},
|
|
326608
|
+
resolution: {
|
|
326609
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
326610
|
+
anyOf: [
|
|
326611
|
+
{
|
|
326612
|
+
type: "boolean",
|
|
326613
|
+
title: "Verify resolution (boolean)"
|
|
326614
|
+
},
|
|
326615
|
+
{
|
|
326616
|
+
type: "object",
|
|
326617
|
+
title: "Verify resolution (detailed)",
|
|
326618
|
+
additionalProperties: false,
|
|
326619
|
+
required: [
|
|
326620
|
+
"width",
|
|
326621
|
+
"height"
|
|
326622
|
+
],
|
|
326623
|
+
properties: {
|
|
326624
|
+
width: {
|
|
326625
|
+
type: "integer",
|
|
326626
|
+
minimum: 1
|
|
326627
|
+
},
|
|
326628
|
+
height: {
|
|
326629
|
+
type: "integer",
|
|
326630
|
+
minimum: 1
|
|
326631
|
+
}
|
|
326632
|
+
}
|
|
326633
|
+
}
|
|
326634
|
+
]
|
|
326635
|
+
},
|
|
326636
|
+
notBlack: {
|
|
326637
|
+
type: "boolean",
|
|
326638
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
326639
|
+
}
|
|
326640
|
+
}
|
|
326641
|
+
},
|
|
325842
326642
|
checkpoints: {
|
|
325843
326643
|
title: "Recording checkpoints",
|
|
325844
326644
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -370468,6 +371268,56 @@ var schemas_default = {
|
|
|
370468
371268
|
}
|
|
370469
371269
|
]
|
|
370470
371270
|
},
|
|
371271
|
+
verify: {
|
|
371272
|
+
title: "Recording verify guards",
|
|
371273
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
371274
|
+
type: "object",
|
|
371275
|
+
additionalProperties: false,
|
|
371276
|
+
properties: {
|
|
371277
|
+
minDuration: {
|
|
371278
|
+
type: "number",
|
|
371279
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
371280
|
+
minimum: 0
|
|
371281
|
+
},
|
|
371282
|
+
maxDuration: {
|
|
371283
|
+
type: "number",
|
|
371284
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
371285
|
+
minimum: 0
|
|
371286
|
+
},
|
|
371287
|
+
resolution: {
|
|
371288
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
371289
|
+
anyOf: [
|
|
371290
|
+
{
|
|
371291
|
+
type: "boolean",
|
|
371292
|
+
title: "Verify resolution (boolean)"
|
|
371293
|
+
},
|
|
371294
|
+
{
|
|
371295
|
+
type: "object",
|
|
371296
|
+
title: "Verify resolution (detailed)",
|
|
371297
|
+
additionalProperties: false,
|
|
371298
|
+
required: [
|
|
371299
|
+
"width",
|
|
371300
|
+
"height"
|
|
371301
|
+
],
|
|
371302
|
+
properties: {
|
|
371303
|
+
width: {
|
|
371304
|
+
type: "integer",
|
|
371305
|
+
minimum: 1
|
|
371306
|
+
},
|
|
371307
|
+
height: {
|
|
371308
|
+
type: "integer",
|
|
371309
|
+
minimum: 1
|
|
371310
|
+
}
|
|
371311
|
+
}
|
|
371312
|
+
}
|
|
371313
|
+
]
|
|
371314
|
+
},
|
|
371315
|
+
notBlack: {
|
|
371316
|
+
type: "boolean",
|
|
371317
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
371318
|
+
}
|
|
371319
|
+
}
|
|
371320
|
+
},
|
|
370471
371321
|
checkpoints: {
|
|
370472
371322
|
title: "Recording checkpoints",
|
|
370473
371323
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -370823,6 +371673,56 @@ var schemas_default = {
|
|
|
370823
371673
|
}
|
|
370824
371674
|
]
|
|
370825
371675
|
},
|
|
371676
|
+
verify: {
|
|
371677
|
+
title: "Recording verify guards",
|
|
371678
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
371679
|
+
type: "object",
|
|
371680
|
+
additionalProperties: false,
|
|
371681
|
+
properties: {
|
|
371682
|
+
minDuration: {
|
|
371683
|
+
type: "number",
|
|
371684
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
371685
|
+
minimum: 0
|
|
371686
|
+
},
|
|
371687
|
+
maxDuration: {
|
|
371688
|
+
type: "number",
|
|
371689
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
371690
|
+
minimum: 0
|
|
371691
|
+
},
|
|
371692
|
+
resolution: {
|
|
371693
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
371694
|
+
anyOf: [
|
|
371695
|
+
{
|
|
371696
|
+
type: "boolean",
|
|
371697
|
+
title: "Verify resolution (boolean)"
|
|
371698
|
+
},
|
|
371699
|
+
{
|
|
371700
|
+
type: "object",
|
|
371701
|
+
title: "Verify resolution (detailed)",
|
|
371702
|
+
additionalProperties: false,
|
|
371703
|
+
required: [
|
|
371704
|
+
"width",
|
|
371705
|
+
"height"
|
|
371706
|
+
],
|
|
371707
|
+
properties: {
|
|
371708
|
+
width: {
|
|
371709
|
+
type: "integer",
|
|
371710
|
+
minimum: 1
|
|
371711
|
+
},
|
|
371712
|
+
height: {
|
|
371713
|
+
type: "integer",
|
|
371714
|
+
minimum: 1
|
|
371715
|
+
}
|
|
371716
|
+
}
|
|
371717
|
+
}
|
|
371718
|
+
]
|
|
371719
|
+
},
|
|
371720
|
+
notBlack: {
|
|
371721
|
+
type: "boolean",
|
|
371722
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
371723
|
+
}
|
|
371724
|
+
}
|
|
371725
|
+
},
|
|
370826
371726
|
checkpoints: {
|
|
370827
371727
|
title: "Recording checkpoints",
|
|
370828
371728
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -421743,6 +422643,56 @@ var schemas_default = {
|
|
|
421743
422643
|
}
|
|
421744
422644
|
]
|
|
421745
422645
|
},
|
|
422646
|
+
verify: {
|
|
422647
|
+
title: "Recording verify guards",
|
|
422648
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
422649
|
+
type: "object",
|
|
422650
|
+
additionalProperties: false,
|
|
422651
|
+
properties: {
|
|
422652
|
+
minDuration: {
|
|
422653
|
+
type: "number",
|
|
422654
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
422655
|
+
minimum: 0
|
|
422656
|
+
},
|
|
422657
|
+
maxDuration: {
|
|
422658
|
+
type: "number",
|
|
422659
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
422660
|
+
minimum: 0
|
|
422661
|
+
},
|
|
422662
|
+
resolution: {
|
|
422663
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
422664
|
+
anyOf: [
|
|
422665
|
+
{
|
|
422666
|
+
type: "boolean",
|
|
422667
|
+
title: "Verify resolution (boolean)"
|
|
422668
|
+
},
|
|
422669
|
+
{
|
|
422670
|
+
type: "object",
|
|
422671
|
+
title: "Verify resolution (detailed)",
|
|
422672
|
+
additionalProperties: false,
|
|
422673
|
+
required: [
|
|
422674
|
+
"width",
|
|
422675
|
+
"height"
|
|
422676
|
+
],
|
|
422677
|
+
properties: {
|
|
422678
|
+
width: {
|
|
422679
|
+
type: "integer",
|
|
422680
|
+
minimum: 1
|
|
422681
|
+
},
|
|
422682
|
+
height: {
|
|
422683
|
+
type: "integer",
|
|
422684
|
+
minimum: 1
|
|
422685
|
+
}
|
|
422686
|
+
}
|
|
422687
|
+
}
|
|
422688
|
+
]
|
|
422689
|
+
},
|
|
422690
|
+
notBlack: {
|
|
422691
|
+
type: "boolean",
|
|
422692
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
422693
|
+
}
|
|
422694
|
+
}
|
|
422695
|
+
},
|
|
421746
422696
|
checkpoints: {
|
|
421747
422697
|
title: "Recording checkpoints",
|
|
421748
422698
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -422098,6 +423048,56 @@ var schemas_default = {
|
|
|
422098
423048
|
}
|
|
422099
423049
|
]
|
|
422100
423050
|
},
|
|
423051
|
+
verify: {
|
|
423052
|
+
title: "Recording verify guards",
|
|
423053
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
423054
|
+
type: "object",
|
|
423055
|
+
additionalProperties: false,
|
|
423056
|
+
properties: {
|
|
423057
|
+
minDuration: {
|
|
423058
|
+
type: "number",
|
|
423059
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
423060
|
+
minimum: 0
|
|
423061
|
+
},
|
|
423062
|
+
maxDuration: {
|
|
423063
|
+
type: "number",
|
|
423064
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
423065
|
+
minimum: 0
|
|
423066
|
+
},
|
|
423067
|
+
resolution: {
|
|
423068
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
423069
|
+
anyOf: [
|
|
423070
|
+
{
|
|
423071
|
+
type: "boolean",
|
|
423072
|
+
title: "Verify resolution (boolean)"
|
|
423073
|
+
},
|
|
423074
|
+
{
|
|
423075
|
+
type: "object",
|
|
423076
|
+
title: "Verify resolution (detailed)",
|
|
423077
|
+
additionalProperties: false,
|
|
423078
|
+
required: [
|
|
423079
|
+
"width",
|
|
423080
|
+
"height"
|
|
423081
|
+
],
|
|
423082
|
+
properties: {
|
|
423083
|
+
width: {
|
|
423084
|
+
type: "integer",
|
|
423085
|
+
minimum: 1
|
|
423086
|
+
},
|
|
423087
|
+
height: {
|
|
423088
|
+
type: "integer",
|
|
423089
|
+
minimum: 1
|
|
423090
|
+
}
|
|
423091
|
+
}
|
|
423092
|
+
}
|
|
423093
|
+
]
|
|
423094
|
+
},
|
|
423095
|
+
notBlack: {
|
|
423096
|
+
type: "boolean",
|
|
423097
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
423098
|
+
}
|
|
423099
|
+
}
|
|
423100
|
+
},
|
|
422101
423101
|
checkpoints: {
|
|
422102
423102
|
title: "Recording checkpoints",
|
|
422103
423103
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -466727,6 +467727,56 @@ var schemas_default = {
|
|
|
466727
467727
|
}
|
|
466728
467728
|
]
|
|
466729
467729
|
},
|
|
467730
|
+
verify: {
|
|
467731
|
+
title: "Recording verify guards",
|
|
467732
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
467733
|
+
type: "object",
|
|
467734
|
+
additionalProperties: false,
|
|
467735
|
+
properties: {
|
|
467736
|
+
minDuration: {
|
|
467737
|
+
type: "number",
|
|
467738
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
467739
|
+
minimum: 0
|
|
467740
|
+
},
|
|
467741
|
+
maxDuration: {
|
|
467742
|
+
type: "number",
|
|
467743
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
467744
|
+
minimum: 0
|
|
467745
|
+
},
|
|
467746
|
+
resolution: {
|
|
467747
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
467748
|
+
anyOf: [
|
|
467749
|
+
{
|
|
467750
|
+
type: "boolean",
|
|
467751
|
+
title: "Verify resolution (boolean)"
|
|
467752
|
+
},
|
|
467753
|
+
{
|
|
467754
|
+
type: "object",
|
|
467755
|
+
title: "Verify resolution (detailed)",
|
|
467756
|
+
additionalProperties: false,
|
|
467757
|
+
required: [
|
|
467758
|
+
"width",
|
|
467759
|
+
"height"
|
|
467760
|
+
],
|
|
467761
|
+
properties: {
|
|
467762
|
+
width: {
|
|
467763
|
+
type: "integer",
|
|
467764
|
+
minimum: 1
|
|
467765
|
+
},
|
|
467766
|
+
height: {
|
|
467767
|
+
type: "integer",
|
|
467768
|
+
minimum: 1
|
|
467769
|
+
}
|
|
467770
|
+
}
|
|
467771
|
+
}
|
|
467772
|
+
]
|
|
467773
|
+
},
|
|
467774
|
+
notBlack: {
|
|
467775
|
+
type: "boolean",
|
|
467776
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
467777
|
+
}
|
|
467778
|
+
}
|
|
467779
|
+
},
|
|
466730
467780
|
checkpoints: {
|
|
466731
467781
|
title: "Recording checkpoints",
|
|
466732
467782
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -467082,6 +468132,56 @@ var schemas_default = {
|
|
|
467082
468132
|
}
|
|
467083
468133
|
]
|
|
467084
468134
|
},
|
|
468135
|
+
verify: {
|
|
468136
|
+
title: "Recording verify guards",
|
|
468137
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
468138
|
+
type: "object",
|
|
468139
|
+
additionalProperties: false,
|
|
468140
|
+
properties: {
|
|
468141
|
+
minDuration: {
|
|
468142
|
+
type: "number",
|
|
468143
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
468144
|
+
minimum: 0
|
|
468145
|
+
},
|
|
468146
|
+
maxDuration: {
|
|
468147
|
+
type: "number",
|
|
468148
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
468149
|
+
minimum: 0
|
|
468150
|
+
},
|
|
468151
|
+
resolution: {
|
|
468152
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
468153
|
+
anyOf: [
|
|
468154
|
+
{
|
|
468155
|
+
type: "boolean",
|
|
468156
|
+
title: "Verify resolution (boolean)"
|
|
468157
|
+
},
|
|
468158
|
+
{
|
|
468159
|
+
type: "object",
|
|
468160
|
+
title: "Verify resolution (detailed)",
|
|
468161
|
+
additionalProperties: false,
|
|
468162
|
+
required: [
|
|
468163
|
+
"width",
|
|
468164
|
+
"height"
|
|
468165
|
+
],
|
|
468166
|
+
properties: {
|
|
468167
|
+
width: {
|
|
468168
|
+
type: "integer",
|
|
468169
|
+
minimum: 1
|
|
468170
|
+
},
|
|
468171
|
+
height: {
|
|
468172
|
+
type: "integer",
|
|
468173
|
+
minimum: 1
|
|
468174
|
+
}
|
|
468175
|
+
}
|
|
468176
|
+
}
|
|
468177
|
+
]
|
|
468178
|
+
},
|
|
468179
|
+
notBlack: {
|
|
468180
|
+
type: "boolean",
|
|
468181
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
468182
|
+
}
|
|
468183
|
+
}
|
|
468184
|
+
},
|
|
467085
468185
|
checkpoints: {
|
|
467086
468186
|
title: "Recording checkpoints",
|
|
467087
468187
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -513403,6 +514503,56 @@ var schemas_default = {
|
|
|
513403
514503
|
}
|
|
513404
514504
|
]
|
|
513405
514505
|
},
|
|
514506
|
+
verify: {
|
|
514507
|
+
title: "Recording verify guards",
|
|
514508
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
514509
|
+
type: "object",
|
|
514510
|
+
additionalProperties: false,
|
|
514511
|
+
properties: {
|
|
514512
|
+
minDuration: {
|
|
514513
|
+
type: "number",
|
|
514514
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
514515
|
+
minimum: 0
|
|
514516
|
+
},
|
|
514517
|
+
maxDuration: {
|
|
514518
|
+
type: "number",
|
|
514519
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
514520
|
+
minimum: 0
|
|
514521
|
+
},
|
|
514522
|
+
resolution: {
|
|
514523
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
514524
|
+
anyOf: [
|
|
514525
|
+
{
|
|
514526
|
+
type: "boolean",
|
|
514527
|
+
title: "Verify resolution (boolean)"
|
|
514528
|
+
},
|
|
514529
|
+
{
|
|
514530
|
+
type: "object",
|
|
514531
|
+
title: "Verify resolution (detailed)",
|
|
514532
|
+
additionalProperties: false,
|
|
514533
|
+
required: [
|
|
514534
|
+
"width",
|
|
514535
|
+
"height"
|
|
514536
|
+
],
|
|
514537
|
+
properties: {
|
|
514538
|
+
width: {
|
|
514539
|
+
type: "integer",
|
|
514540
|
+
minimum: 1
|
|
514541
|
+
},
|
|
514542
|
+
height: {
|
|
514543
|
+
type: "integer",
|
|
514544
|
+
minimum: 1
|
|
514545
|
+
}
|
|
514546
|
+
}
|
|
514547
|
+
}
|
|
514548
|
+
]
|
|
514549
|
+
},
|
|
514550
|
+
notBlack: {
|
|
514551
|
+
type: "boolean",
|
|
514552
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
514553
|
+
}
|
|
514554
|
+
}
|
|
514555
|
+
},
|
|
513406
514556
|
checkpoints: {
|
|
513407
514557
|
title: "Recording checkpoints",
|
|
513408
514558
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -513758,6 +514908,56 @@ var schemas_default = {
|
|
|
513758
514908
|
}
|
|
513759
514909
|
]
|
|
513760
514910
|
},
|
|
514911
|
+
verify: {
|
|
514912
|
+
title: "Recording verify guards",
|
|
514913
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
514914
|
+
type: "object",
|
|
514915
|
+
additionalProperties: false,
|
|
514916
|
+
properties: {
|
|
514917
|
+
minDuration: {
|
|
514918
|
+
type: "number",
|
|
514919
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
514920
|
+
minimum: 0
|
|
514921
|
+
},
|
|
514922
|
+
maxDuration: {
|
|
514923
|
+
type: "number",
|
|
514924
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
514925
|
+
minimum: 0
|
|
514926
|
+
},
|
|
514927
|
+
resolution: {
|
|
514928
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
514929
|
+
anyOf: [
|
|
514930
|
+
{
|
|
514931
|
+
type: "boolean",
|
|
514932
|
+
title: "Verify resolution (boolean)"
|
|
514933
|
+
},
|
|
514934
|
+
{
|
|
514935
|
+
type: "object",
|
|
514936
|
+
title: "Verify resolution (detailed)",
|
|
514937
|
+
additionalProperties: false,
|
|
514938
|
+
required: [
|
|
514939
|
+
"width",
|
|
514940
|
+
"height"
|
|
514941
|
+
],
|
|
514942
|
+
properties: {
|
|
514943
|
+
width: {
|
|
514944
|
+
type: "integer",
|
|
514945
|
+
minimum: 1
|
|
514946
|
+
},
|
|
514947
|
+
height: {
|
|
514948
|
+
type: "integer",
|
|
514949
|
+
minimum: 1
|
|
514950
|
+
}
|
|
514951
|
+
}
|
|
514952
|
+
}
|
|
514953
|
+
]
|
|
514954
|
+
},
|
|
514955
|
+
notBlack: {
|
|
514956
|
+
type: "boolean",
|
|
514957
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
514958
|
+
}
|
|
514959
|
+
}
|
|
514960
|
+
},
|
|
513761
514961
|
checkpoints: {
|
|
513762
514962
|
title: "Recording checkpoints",
|
|
513763
514963
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -561732,6 +562932,56 @@ var schemas_default = {
|
|
|
561732
562932
|
}
|
|
561733
562933
|
]
|
|
561734
562934
|
},
|
|
562935
|
+
verify: {
|
|
562936
|
+
title: "Recording verify guards",
|
|
562937
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
562938
|
+
type: "object",
|
|
562939
|
+
additionalProperties: false,
|
|
562940
|
+
properties: {
|
|
562941
|
+
minDuration: {
|
|
562942
|
+
type: "number",
|
|
562943
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
562944
|
+
minimum: 0
|
|
562945
|
+
},
|
|
562946
|
+
maxDuration: {
|
|
562947
|
+
type: "number",
|
|
562948
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
562949
|
+
minimum: 0
|
|
562950
|
+
},
|
|
562951
|
+
resolution: {
|
|
562952
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
562953
|
+
anyOf: [
|
|
562954
|
+
{
|
|
562955
|
+
type: "boolean",
|
|
562956
|
+
title: "Verify resolution (boolean)"
|
|
562957
|
+
},
|
|
562958
|
+
{
|
|
562959
|
+
type: "object",
|
|
562960
|
+
title: "Verify resolution (detailed)",
|
|
562961
|
+
additionalProperties: false,
|
|
562962
|
+
required: [
|
|
562963
|
+
"width",
|
|
562964
|
+
"height"
|
|
562965
|
+
],
|
|
562966
|
+
properties: {
|
|
562967
|
+
width: {
|
|
562968
|
+
type: "integer",
|
|
562969
|
+
minimum: 1
|
|
562970
|
+
},
|
|
562971
|
+
height: {
|
|
562972
|
+
type: "integer",
|
|
562973
|
+
minimum: 1
|
|
562974
|
+
}
|
|
562975
|
+
}
|
|
562976
|
+
}
|
|
562977
|
+
]
|
|
562978
|
+
},
|
|
562979
|
+
notBlack: {
|
|
562980
|
+
type: "boolean",
|
|
562981
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
562982
|
+
}
|
|
562983
|
+
}
|
|
562984
|
+
},
|
|
561735
562985
|
checkpoints: {
|
|
561736
562986
|
title: "Recording checkpoints",
|
|
561737
562987
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -562087,6 +563337,56 @@ var schemas_default = {
|
|
|
562087
563337
|
}
|
|
562088
563338
|
]
|
|
562089
563339
|
},
|
|
563340
|
+
verify: {
|
|
563341
|
+
title: "Recording verify guards",
|
|
563342
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
563343
|
+
type: "object",
|
|
563344
|
+
additionalProperties: false,
|
|
563345
|
+
properties: {
|
|
563346
|
+
minDuration: {
|
|
563347
|
+
type: "number",
|
|
563348
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
563349
|
+
minimum: 0
|
|
563350
|
+
},
|
|
563351
|
+
maxDuration: {
|
|
563352
|
+
type: "number",
|
|
563353
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
563354
|
+
minimum: 0
|
|
563355
|
+
},
|
|
563356
|
+
resolution: {
|
|
563357
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
563358
|
+
anyOf: [
|
|
563359
|
+
{
|
|
563360
|
+
type: "boolean",
|
|
563361
|
+
title: "Verify resolution (boolean)"
|
|
563362
|
+
},
|
|
563363
|
+
{
|
|
563364
|
+
type: "object",
|
|
563365
|
+
title: "Verify resolution (detailed)",
|
|
563366
|
+
additionalProperties: false,
|
|
563367
|
+
required: [
|
|
563368
|
+
"width",
|
|
563369
|
+
"height"
|
|
563370
|
+
],
|
|
563371
|
+
properties: {
|
|
563372
|
+
width: {
|
|
563373
|
+
type: "integer",
|
|
563374
|
+
minimum: 1
|
|
563375
|
+
},
|
|
563376
|
+
height: {
|
|
563377
|
+
type: "integer",
|
|
563378
|
+
minimum: 1
|
|
563379
|
+
}
|
|
563380
|
+
}
|
|
563381
|
+
}
|
|
563382
|
+
]
|
|
563383
|
+
},
|
|
563384
|
+
notBlack: {
|
|
563385
|
+
type: "boolean",
|
|
563386
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
563387
|
+
}
|
|
563388
|
+
}
|
|
563389
|
+
},
|
|
562090
563390
|
checkpoints: {
|
|
562091
563391
|
title: "Recording checkpoints",
|
|
562092
563392
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -606716,6 +608016,56 @@ var schemas_default = {
|
|
|
606716
608016
|
}
|
|
606717
608017
|
]
|
|
606718
608018
|
},
|
|
608019
|
+
verify: {
|
|
608020
|
+
title: "Recording verify guards",
|
|
608021
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
608022
|
+
type: "object",
|
|
608023
|
+
additionalProperties: false,
|
|
608024
|
+
properties: {
|
|
608025
|
+
minDuration: {
|
|
608026
|
+
type: "number",
|
|
608027
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
608028
|
+
minimum: 0
|
|
608029
|
+
},
|
|
608030
|
+
maxDuration: {
|
|
608031
|
+
type: "number",
|
|
608032
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
608033
|
+
minimum: 0
|
|
608034
|
+
},
|
|
608035
|
+
resolution: {
|
|
608036
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
608037
|
+
anyOf: [
|
|
608038
|
+
{
|
|
608039
|
+
type: "boolean",
|
|
608040
|
+
title: "Verify resolution (boolean)"
|
|
608041
|
+
},
|
|
608042
|
+
{
|
|
608043
|
+
type: "object",
|
|
608044
|
+
title: "Verify resolution (detailed)",
|
|
608045
|
+
additionalProperties: false,
|
|
608046
|
+
required: [
|
|
608047
|
+
"width",
|
|
608048
|
+
"height"
|
|
608049
|
+
],
|
|
608050
|
+
properties: {
|
|
608051
|
+
width: {
|
|
608052
|
+
type: "integer",
|
|
608053
|
+
minimum: 1
|
|
608054
|
+
},
|
|
608055
|
+
height: {
|
|
608056
|
+
type: "integer",
|
|
608057
|
+
minimum: 1
|
|
608058
|
+
}
|
|
608059
|
+
}
|
|
608060
|
+
}
|
|
608061
|
+
]
|
|
608062
|
+
},
|
|
608063
|
+
notBlack: {
|
|
608064
|
+
type: "boolean",
|
|
608065
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
608066
|
+
}
|
|
608067
|
+
}
|
|
608068
|
+
},
|
|
606719
608069
|
checkpoints: {
|
|
606720
608070
|
title: "Recording checkpoints",
|
|
606721
608071
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|
|
@@ -607071,6 +608421,56 @@ var schemas_default = {
|
|
|
607071
608421
|
}
|
|
607072
608422
|
]
|
|
607073
608423
|
},
|
|
608424
|
+
verify: {
|
|
608425
|
+
title: "Recording verify guards",
|
|
608426
|
+
description: "Structural assertions on the produced video file, evaluated when the recording stops. Unlike checkpoint drift (a WARNING), a violated guard FAILs the stopRecord step \u2014 these are properties you explicitly demand of the artifact.",
|
|
608427
|
+
type: "object",
|
|
608428
|
+
additionalProperties: false,
|
|
608429
|
+
properties: {
|
|
608430
|
+
minDuration: {
|
|
608431
|
+
type: "number",
|
|
608432
|
+
description: "Fail if the video is shorter than this many seconds.",
|
|
608433
|
+
minimum: 0
|
|
608434
|
+
},
|
|
608435
|
+
maxDuration: {
|
|
608436
|
+
type: "number",
|
|
608437
|
+
description: "Fail if the video is longer than this many seconds.",
|
|
608438
|
+
minimum: 0
|
|
608439
|
+
},
|
|
608440
|
+
resolution: {
|
|
608441
|
+
description: "Verify the video's dimensions (\xB12 pixels \u2014 encoders round to even dimensions). `true` compares against the capture plan's resolved expectation (the crop rectangle when a window/viewport crop applied, else the capture frame size; skipped when no expectation exists for the engine). An object compares literal dimensions.",
|
|
608442
|
+
anyOf: [
|
|
608443
|
+
{
|
|
608444
|
+
type: "boolean",
|
|
608445
|
+
title: "Verify resolution (boolean)"
|
|
608446
|
+
},
|
|
608447
|
+
{
|
|
608448
|
+
type: "object",
|
|
608449
|
+
title: "Verify resolution (detailed)",
|
|
608450
|
+
additionalProperties: false,
|
|
608451
|
+
required: [
|
|
608452
|
+
"width",
|
|
608453
|
+
"height"
|
|
608454
|
+
],
|
|
608455
|
+
properties: {
|
|
608456
|
+
width: {
|
|
608457
|
+
type: "integer",
|
|
608458
|
+
minimum: 1
|
|
608459
|
+
},
|
|
608460
|
+
height: {
|
|
608461
|
+
type: "integer",
|
|
608462
|
+
minimum: 1
|
|
608463
|
+
}
|
|
608464
|
+
}
|
|
608465
|
+
}
|
|
608466
|
+
]
|
|
608467
|
+
},
|
|
608468
|
+
notBlack: {
|
|
608469
|
+
type: "boolean",
|
|
608470
|
+
description: "Fail if the video is essentially all black (black frames cover 95% or more of its duration) \u2014 the classic symptom of a broken screen capture."
|
|
608471
|
+
}
|
|
608472
|
+
}
|
|
608473
|
+
},
|
|
607074
608474
|
checkpoints: {
|
|
607075
608475
|
title: "Recording checkpoints",
|
|
607076
608476
|
description: "Capture a checkpoint screenshot after every step while this recording is active and compare each against a persistent baseline stored beside the recording (`<path>.checkpoints/` by default). Baselines seed on the first run; on later runs, per-checkpoint variation is reported in the `stopRecord` step's outputs, and variation beyond `maxVariation` surfaces as a WARNING. If `false` or unset, no checkpoints are captured.",
|