doc-detective-common 4.0.2-dev.11 → 4.0.2-dev.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.
- package/dist/index.cjs +868 -112
- package/dist/schemas/schemas.json +868 -112
- package/dist/types/generated/checkLink_v3.d.ts +6 -0
- package/dist/types/generated/checkLink_v3.d.ts.map +1 -1
- package/dist/types/generated/config_v3.d.ts +6 -0
- package/dist/types/generated/config_v3.d.ts.map +1 -1
- package/dist/types/generated/goTo_v3.d.ts +6 -0
- package/dist/types/generated/goTo_v3.d.ts.map +1 -1
- package/dist/types/generated/resolvedTests_v3.d.ts +6 -0
- package/dist/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/types/generated/screenshot_v3.d.ts +2 -2
- package/dist/types/generated/step_v3.d.ts +14 -2
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +28 -4
- package/dist/types/generated/test_v3.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -77,6 +77,14 @@ var schemas_default = {
|
|
|
77
77
|
"trim"
|
|
78
78
|
]
|
|
79
79
|
},
|
|
80
|
+
params: {
|
|
81
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
82
|
+
type: "object",
|
|
83
|
+
additionalProperties: {
|
|
84
|
+
type: "string"
|
|
85
|
+
},
|
|
86
|
+
default: {}
|
|
87
|
+
},
|
|
80
88
|
statusCodes: {
|
|
81
89
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
82
90
|
anyOf: [
|
|
@@ -160,6 +168,14 @@ var schemas_default = {
|
|
|
160
168
|
"trim"
|
|
161
169
|
]
|
|
162
170
|
},
|
|
171
|
+
params: {
|
|
172
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
173
|
+
type: "object",
|
|
174
|
+
additionalProperties: {
|
|
175
|
+
type: "string"
|
|
176
|
+
},
|
|
177
|
+
default: {}
|
|
178
|
+
},
|
|
163
179
|
statusCodes: {
|
|
164
180
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
165
181
|
anyOf: [
|
|
@@ -222,6 +238,13 @@ var schemas_default = {
|
|
|
222
238
|
statusCodes: [
|
|
223
239
|
200
|
|
224
240
|
]
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
url: "/health",
|
|
244
|
+
origin: "https://my-app.com",
|
|
245
|
+
params: {
|
|
246
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
247
|
+
}
|
|
225
248
|
}
|
|
226
249
|
]
|
|
227
250
|
},
|
|
@@ -567,6 +590,14 @@ var schemas_default = {
|
|
|
567
590
|
description: "Default protocol and domain to use for relative URLs.",
|
|
568
591
|
type: "string"
|
|
569
592
|
},
|
|
593
|
+
originParams: {
|
|
594
|
+
description: "Query parameters to append to URLs resolved against `origin`. Values support environment variable substitution via `$VAR` syntax. Step-level `params` on `goTo` / `checkLink` are merged on top of these, with step keys winning on collision. WARNING: values are embedded in request URLs and appear verbatim in test results, logs, and reports \u2014 avoid putting long-lived secrets here.",
|
|
595
|
+
type: "object",
|
|
596
|
+
additionalProperties: {
|
|
597
|
+
type: "string"
|
|
598
|
+
},
|
|
599
|
+
default: {}
|
|
600
|
+
},
|
|
570
601
|
beforeAny: {
|
|
571
602
|
description: "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
|
|
572
603
|
anyOf: [
|
|
@@ -1581,6 +1612,14 @@ var schemas_default = {
|
|
|
1581
1612
|
"trim"
|
|
1582
1613
|
]
|
|
1583
1614
|
},
|
|
1615
|
+
params: {
|
|
1616
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
1617
|
+
type: "object",
|
|
1618
|
+
additionalProperties: {
|
|
1619
|
+
type: "string"
|
|
1620
|
+
},
|
|
1621
|
+
default: {}
|
|
1622
|
+
},
|
|
1584
1623
|
statusCodes: {
|
|
1585
1624
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
1586
1625
|
anyOf: [
|
|
@@ -1664,6 +1703,14 @@ var schemas_default = {
|
|
|
1664
1703
|
"trim"
|
|
1665
1704
|
]
|
|
1666
1705
|
},
|
|
1706
|
+
params: {
|
|
1707
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
1708
|
+
type: "object",
|
|
1709
|
+
additionalProperties: {
|
|
1710
|
+
type: "string"
|
|
1711
|
+
},
|
|
1712
|
+
default: {}
|
|
1713
|
+
},
|
|
1667
1714
|
statusCodes: {
|
|
1668
1715
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
1669
1716
|
anyOf: [
|
|
@@ -1726,6 +1773,13 @@ var schemas_default = {
|
|
|
1726
1773
|
statusCodes: [
|
|
1727
1774
|
200
|
|
1728
1775
|
]
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
url: "/health",
|
|
1779
|
+
origin: "https://my-app.com",
|
|
1780
|
+
params: {
|
|
1781
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
1782
|
+
}
|
|
1729
1783
|
}
|
|
1730
1784
|
]
|
|
1731
1785
|
}
|
|
@@ -3666,6 +3720,14 @@ var schemas_default = {
|
|
|
3666
3720
|
"trim"
|
|
3667
3721
|
]
|
|
3668
3722
|
},
|
|
3723
|
+
params: {
|
|
3724
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
3725
|
+
type: "object",
|
|
3726
|
+
additionalProperties: {
|
|
3727
|
+
type: "string"
|
|
3728
|
+
},
|
|
3729
|
+
default: {}
|
|
3730
|
+
},
|
|
3669
3731
|
timeout: {
|
|
3670
3732
|
type: "integer",
|
|
3671
3733
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -3838,6 +3900,14 @@ var schemas_default = {
|
|
|
3838
3900
|
"trim"
|
|
3839
3901
|
]
|
|
3840
3902
|
},
|
|
3903
|
+
params: {
|
|
3904
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
3905
|
+
type: "object",
|
|
3906
|
+
additionalProperties: {
|
|
3907
|
+
type: "string"
|
|
3908
|
+
},
|
|
3909
|
+
default: {}
|
|
3910
|
+
},
|
|
3841
3911
|
timeout: {
|
|
3842
3912
|
type: "integer",
|
|
3843
3913
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -3987,6 +4057,13 @@ var schemas_default = {
|
|
|
3987
4057
|
url: "/search",
|
|
3988
4058
|
origin: "https://www.google.com"
|
|
3989
4059
|
},
|
|
4060
|
+
{
|
|
4061
|
+
url: "/dashboard",
|
|
4062
|
+
origin: "https://my-app.com",
|
|
4063
|
+
params: {
|
|
4064
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
3990
4067
|
{
|
|
3991
4068
|
url: "https://www.example.com",
|
|
3992
4069
|
waitUntil: {
|
|
@@ -6252,9 +6329,9 @@ var schemas_default = {
|
|
|
6252
6329
|
anyOf: [
|
|
6253
6330
|
{
|
|
6254
6331
|
title: "Screenshot (simple)",
|
|
6255
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6332
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6256
6333
|
type: "string",
|
|
6257
|
-
pattern: "([A-Za-z0-9_
|
|
6334
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6258
6335
|
transform: [
|
|
6259
6336
|
"trim"
|
|
6260
6337
|
]
|
|
@@ -6265,9 +6342,9 @@ var schemas_default = {
|
|
|
6265
6342
|
properties: {
|
|
6266
6343
|
path: {
|
|
6267
6344
|
title: "Screenshot (simple)",
|
|
6268
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6345
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6269
6346
|
type: "string",
|
|
6270
|
-
pattern: "([A-Za-z0-9_
|
|
6347
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6271
6348
|
transform: [
|
|
6272
6349
|
"trim"
|
|
6273
6350
|
]
|
|
@@ -6498,9 +6575,9 @@ var schemas_default = {
|
|
|
6498
6575
|
schemas: {
|
|
6499
6576
|
path: {
|
|
6500
6577
|
title: "Screenshot (simple)",
|
|
6501
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6578
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6502
6579
|
type: "string",
|
|
6503
|
-
pattern: "([A-Za-z0-9_
|
|
6580
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6504
6581
|
transform: [
|
|
6505
6582
|
"trim"
|
|
6506
6583
|
]
|
|
@@ -6511,9 +6588,9 @@ var schemas_default = {
|
|
|
6511
6588
|
properties: {
|
|
6512
6589
|
path: {
|
|
6513
6590
|
title: "Screenshot (simple)",
|
|
6514
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
6591
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
6515
6592
|
type: "string",
|
|
6516
|
-
pattern: "([A-Za-z0-9_
|
|
6593
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
6517
6594
|
transform: [
|
|
6518
6595
|
"trim"
|
|
6519
6596
|
]
|
|
@@ -6895,6 +6972,12 @@ var schemas_default = {
|
|
|
6895
6972
|
"image.png",
|
|
6896
6973
|
"static/images/image.png",
|
|
6897
6974
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
6975
|
+
"https://example.com/static/images/image.png",
|
|
6976
|
+
{
|
|
6977
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
6978
|
+
maxVariation: 0.05,
|
|
6979
|
+
overwrite: "aboveVariation"
|
|
6980
|
+
},
|
|
6898
6981
|
{
|
|
6899
6982
|
path: "image.png",
|
|
6900
6983
|
directory: "static/images",
|
|
@@ -10244,6 +10327,14 @@ var schemas_default = {
|
|
|
10244
10327
|
"trim"
|
|
10245
10328
|
]
|
|
10246
10329
|
},
|
|
10330
|
+
params: {
|
|
10331
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
10332
|
+
type: "object",
|
|
10333
|
+
additionalProperties: {
|
|
10334
|
+
type: "string"
|
|
10335
|
+
},
|
|
10336
|
+
default: {}
|
|
10337
|
+
},
|
|
10247
10338
|
statusCodes: {
|
|
10248
10339
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10249
10340
|
anyOf: [
|
|
@@ -10327,6 +10418,14 @@ var schemas_default = {
|
|
|
10327
10418
|
"trim"
|
|
10328
10419
|
]
|
|
10329
10420
|
},
|
|
10421
|
+
params: {
|
|
10422
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
10423
|
+
type: "object",
|
|
10424
|
+
additionalProperties: {
|
|
10425
|
+
type: "string"
|
|
10426
|
+
},
|
|
10427
|
+
default: {}
|
|
10428
|
+
},
|
|
10330
10429
|
statusCodes: {
|
|
10331
10430
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10332
10431
|
anyOf: [
|
|
@@ -10389,6 +10488,13 @@ var schemas_default = {
|
|
|
10389
10488
|
statusCodes: [
|
|
10390
10489
|
200
|
|
10391
10490
|
]
|
|
10491
|
+
},
|
|
10492
|
+
{
|
|
10493
|
+
url: "/health",
|
|
10494
|
+
origin: "https://my-app.com",
|
|
10495
|
+
params: {
|
|
10496
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
10497
|
+
}
|
|
10392
10498
|
}
|
|
10393
10499
|
]
|
|
10394
10500
|
}
|
|
@@ -12329,6 +12435,14 @@ var schemas_default = {
|
|
|
12329
12435
|
"trim"
|
|
12330
12436
|
]
|
|
12331
12437
|
},
|
|
12438
|
+
params: {
|
|
12439
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
12440
|
+
type: "object",
|
|
12441
|
+
additionalProperties: {
|
|
12442
|
+
type: "string"
|
|
12443
|
+
},
|
|
12444
|
+
default: {}
|
|
12445
|
+
},
|
|
12332
12446
|
timeout: {
|
|
12333
12447
|
type: "integer",
|
|
12334
12448
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12501,6 +12615,14 @@ var schemas_default = {
|
|
|
12501
12615
|
"trim"
|
|
12502
12616
|
]
|
|
12503
12617
|
},
|
|
12618
|
+
params: {
|
|
12619
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
12620
|
+
type: "object",
|
|
12621
|
+
additionalProperties: {
|
|
12622
|
+
type: "string"
|
|
12623
|
+
},
|
|
12624
|
+
default: {}
|
|
12625
|
+
},
|
|
12504
12626
|
timeout: {
|
|
12505
12627
|
type: "integer",
|
|
12506
12628
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12650,6 +12772,13 @@ var schemas_default = {
|
|
|
12650
12772
|
url: "/search",
|
|
12651
12773
|
origin: "https://www.google.com"
|
|
12652
12774
|
},
|
|
12775
|
+
{
|
|
12776
|
+
url: "/dashboard",
|
|
12777
|
+
origin: "https://my-app.com",
|
|
12778
|
+
params: {
|
|
12779
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
12780
|
+
}
|
|
12781
|
+
},
|
|
12653
12782
|
{
|
|
12654
12783
|
url: "https://www.example.com",
|
|
12655
12784
|
waitUntil: {
|
|
@@ -14915,9 +15044,9 @@ var schemas_default = {
|
|
|
14915
15044
|
anyOf: [
|
|
14916
15045
|
{
|
|
14917
15046
|
title: "Screenshot (simple)",
|
|
14918
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15047
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
14919
15048
|
type: "string",
|
|
14920
|
-
pattern: "([A-Za-z0-9_
|
|
15049
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
14921
15050
|
transform: [
|
|
14922
15051
|
"trim"
|
|
14923
15052
|
]
|
|
@@ -14928,9 +15057,9 @@ var schemas_default = {
|
|
|
14928
15057
|
properties: {
|
|
14929
15058
|
path: {
|
|
14930
15059
|
title: "Screenshot (simple)",
|
|
14931
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15060
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
14932
15061
|
type: "string",
|
|
14933
|
-
pattern: "([A-Za-z0-9_
|
|
15062
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
14934
15063
|
transform: [
|
|
14935
15064
|
"trim"
|
|
14936
15065
|
]
|
|
@@ -15161,9 +15290,9 @@ var schemas_default = {
|
|
|
15161
15290
|
schemas: {
|
|
15162
15291
|
path: {
|
|
15163
15292
|
title: "Screenshot (simple)",
|
|
15164
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15293
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
15165
15294
|
type: "string",
|
|
15166
|
-
pattern: "([A-Za-z0-9_
|
|
15295
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
15167
15296
|
transform: [
|
|
15168
15297
|
"trim"
|
|
15169
15298
|
]
|
|
@@ -15174,9 +15303,9 @@ var schemas_default = {
|
|
|
15174
15303
|
properties: {
|
|
15175
15304
|
path: {
|
|
15176
15305
|
title: "Screenshot (simple)",
|
|
15177
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
15306
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
15178
15307
|
type: "string",
|
|
15179
|
-
pattern: "([A-Za-z0-9_
|
|
15308
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
15180
15309
|
transform: [
|
|
15181
15310
|
"trim"
|
|
15182
15311
|
]
|
|
@@ -15558,6 +15687,12 @@ var schemas_default = {
|
|
|
15558
15687
|
"image.png",
|
|
15559
15688
|
"static/images/image.png",
|
|
15560
15689
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
15690
|
+
"https://example.com/static/images/image.png",
|
|
15691
|
+
{
|
|
15692
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
15693
|
+
maxVariation: 0.05,
|
|
15694
|
+
overwrite: "aboveVariation"
|
|
15695
|
+
},
|
|
15561
15696
|
{
|
|
15562
15697
|
path: "image.png",
|
|
15563
15698
|
directory: "static/images",
|
|
@@ -17978,6 +18113,12 @@ var schemas_default = {
|
|
|
17978
18113
|
"html"
|
|
17979
18114
|
]
|
|
17980
18115
|
},
|
|
18116
|
+
{
|
|
18117
|
+
origin: "https://my-app.com",
|
|
18118
|
+
originParams: {
|
|
18119
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
18120
|
+
}
|
|
18121
|
+
},
|
|
17981
18122
|
{
|
|
17982
18123
|
fileTypes: [
|
|
17983
18124
|
{
|
|
@@ -20343,6 +20484,14 @@ var schemas_default = {
|
|
|
20343
20484
|
"trim"
|
|
20344
20485
|
]
|
|
20345
20486
|
},
|
|
20487
|
+
params: {
|
|
20488
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
20489
|
+
type: "object",
|
|
20490
|
+
additionalProperties: {
|
|
20491
|
+
type: "string"
|
|
20492
|
+
},
|
|
20493
|
+
default: {}
|
|
20494
|
+
},
|
|
20346
20495
|
timeout: {
|
|
20347
20496
|
type: "integer",
|
|
20348
20497
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20515,6 +20664,14 @@ var schemas_default = {
|
|
|
20515
20664
|
"trim"
|
|
20516
20665
|
]
|
|
20517
20666
|
},
|
|
20667
|
+
params: {
|
|
20668
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
20669
|
+
type: "object",
|
|
20670
|
+
additionalProperties: {
|
|
20671
|
+
type: "string"
|
|
20672
|
+
},
|
|
20673
|
+
default: {}
|
|
20674
|
+
},
|
|
20518
20675
|
timeout: {
|
|
20519
20676
|
type: "integer",
|
|
20520
20677
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20664,6 +20821,13 @@ var schemas_default = {
|
|
|
20664
20821
|
url: "/search",
|
|
20665
20822
|
origin: "https://www.google.com"
|
|
20666
20823
|
},
|
|
20824
|
+
{
|
|
20825
|
+
url: "/dashboard",
|
|
20826
|
+
origin: "https://my-app.com",
|
|
20827
|
+
params: {
|
|
20828
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
20829
|
+
}
|
|
20830
|
+
},
|
|
20667
20831
|
{
|
|
20668
20832
|
url: "https://www.example.com",
|
|
20669
20833
|
waitUntil: {
|
|
@@ -22323,6 +22487,14 @@ var schemas_default = {
|
|
|
22323
22487
|
description: "Default protocol and domain to use for relative URLs.",
|
|
22324
22488
|
type: "string"
|
|
22325
22489
|
},
|
|
22490
|
+
originParams: {
|
|
22491
|
+
description: "Query parameters to append to URLs resolved against `origin`. Values support environment variable substitution via `$VAR` syntax. Step-level `params` on `goTo` / `checkLink` are merged on top of these, with step keys winning on collision. WARNING: values are embedded in request URLs and appear verbatim in test results, logs, and reports \u2014 avoid putting long-lived secrets here.",
|
|
22492
|
+
type: "object",
|
|
22493
|
+
additionalProperties: {
|
|
22494
|
+
type: "string"
|
|
22495
|
+
},
|
|
22496
|
+
default: {}
|
|
22497
|
+
},
|
|
22326
22498
|
beforeAny: {
|
|
22327
22499
|
description: "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
|
|
22328
22500
|
anyOf: [
|
|
@@ -23337,6 +23509,14 @@ var schemas_default = {
|
|
|
23337
23509
|
"trim"
|
|
23338
23510
|
]
|
|
23339
23511
|
},
|
|
23512
|
+
params: {
|
|
23513
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
23514
|
+
type: "object",
|
|
23515
|
+
additionalProperties: {
|
|
23516
|
+
type: "string"
|
|
23517
|
+
},
|
|
23518
|
+
default: {}
|
|
23519
|
+
},
|
|
23340
23520
|
statusCodes: {
|
|
23341
23521
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23342
23522
|
anyOf: [
|
|
@@ -23420,6 +23600,14 @@ var schemas_default = {
|
|
|
23420
23600
|
"trim"
|
|
23421
23601
|
]
|
|
23422
23602
|
},
|
|
23603
|
+
params: {
|
|
23604
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
23605
|
+
type: "object",
|
|
23606
|
+
additionalProperties: {
|
|
23607
|
+
type: "string"
|
|
23608
|
+
},
|
|
23609
|
+
default: {}
|
|
23610
|
+
},
|
|
23423
23611
|
statusCodes: {
|
|
23424
23612
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23425
23613
|
anyOf: [
|
|
@@ -23482,6 +23670,13 @@ var schemas_default = {
|
|
|
23482
23670
|
statusCodes: [
|
|
23483
23671
|
200
|
|
23484
23672
|
]
|
|
23673
|
+
},
|
|
23674
|
+
{
|
|
23675
|
+
url: "/health",
|
|
23676
|
+
origin: "https://my-app.com",
|
|
23677
|
+
params: {
|
|
23678
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
23679
|
+
}
|
|
23485
23680
|
}
|
|
23486
23681
|
]
|
|
23487
23682
|
}
|
|
@@ -25422,6 +25617,14 @@ var schemas_default = {
|
|
|
25422
25617
|
"trim"
|
|
25423
25618
|
]
|
|
25424
25619
|
},
|
|
25620
|
+
params: {
|
|
25621
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
25622
|
+
type: "object",
|
|
25623
|
+
additionalProperties: {
|
|
25624
|
+
type: "string"
|
|
25625
|
+
},
|
|
25626
|
+
default: {}
|
|
25627
|
+
},
|
|
25425
25628
|
timeout: {
|
|
25426
25629
|
type: "integer",
|
|
25427
25630
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25594,6 +25797,14 @@ var schemas_default = {
|
|
|
25594
25797
|
"trim"
|
|
25595
25798
|
]
|
|
25596
25799
|
},
|
|
25800
|
+
params: {
|
|
25801
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
25802
|
+
type: "object",
|
|
25803
|
+
additionalProperties: {
|
|
25804
|
+
type: "string"
|
|
25805
|
+
},
|
|
25806
|
+
default: {}
|
|
25807
|
+
},
|
|
25597
25808
|
timeout: {
|
|
25598
25809
|
type: "integer",
|
|
25599
25810
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25743,6 +25954,13 @@ var schemas_default = {
|
|
|
25743
25954
|
url: "/search",
|
|
25744
25955
|
origin: "https://www.google.com"
|
|
25745
25956
|
},
|
|
25957
|
+
{
|
|
25958
|
+
url: "/dashboard",
|
|
25959
|
+
origin: "https://my-app.com",
|
|
25960
|
+
params: {
|
|
25961
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
25962
|
+
}
|
|
25963
|
+
},
|
|
25746
25964
|
{
|
|
25747
25965
|
url: "https://www.example.com",
|
|
25748
25966
|
waitUntil: {
|
|
@@ -28008,9 +28226,9 @@ var schemas_default = {
|
|
|
28008
28226
|
anyOf: [
|
|
28009
28227
|
{
|
|
28010
28228
|
title: "Screenshot (simple)",
|
|
28011
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28229
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28012
28230
|
type: "string",
|
|
28013
|
-
pattern: "([A-Za-z0-9_
|
|
28231
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28014
28232
|
transform: [
|
|
28015
28233
|
"trim"
|
|
28016
28234
|
]
|
|
@@ -28021,9 +28239,9 @@ var schemas_default = {
|
|
|
28021
28239
|
properties: {
|
|
28022
28240
|
path: {
|
|
28023
28241
|
title: "Screenshot (simple)",
|
|
28024
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28242
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28025
28243
|
type: "string",
|
|
28026
|
-
pattern: "([A-Za-z0-9_
|
|
28244
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28027
28245
|
transform: [
|
|
28028
28246
|
"trim"
|
|
28029
28247
|
]
|
|
@@ -28254,9 +28472,9 @@ var schemas_default = {
|
|
|
28254
28472
|
schemas: {
|
|
28255
28473
|
path: {
|
|
28256
28474
|
title: "Screenshot (simple)",
|
|
28257
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28475
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28258
28476
|
type: "string",
|
|
28259
|
-
pattern: "([A-Za-z0-9_
|
|
28477
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28260
28478
|
transform: [
|
|
28261
28479
|
"trim"
|
|
28262
28480
|
]
|
|
@@ -28267,9 +28485,9 @@ var schemas_default = {
|
|
|
28267
28485
|
properties: {
|
|
28268
28486
|
path: {
|
|
28269
28487
|
title: "Screenshot (simple)",
|
|
28270
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
28488
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
28271
28489
|
type: "string",
|
|
28272
|
-
pattern: "([A-Za-z0-9_
|
|
28490
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
28273
28491
|
transform: [
|
|
28274
28492
|
"trim"
|
|
28275
28493
|
]
|
|
@@ -28651,6 +28869,12 @@ var schemas_default = {
|
|
|
28651
28869
|
"image.png",
|
|
28652
28870
|
"static/images/image.png",
|
|
28653
28871
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
28872
|
+
"https://example.com/static/images/image.png",
|
|
28873
|
+
{
|
|
28874
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
28875
|
+
maxVariation: 0.05,
|
|
28876
|
+
overwrite: "aboveVariation"
|
|
28877
|
+
},
|
|
28654
28878
|
{
|
|
28655
28879
|
path: "image.png",
|
|
28656
28880
|
directory: "static/images",
|
|
@@ -32000,6 +32224,14 @@ var schemas_default = {
|
|
|
32000
32224
|
"trim"
|
|
32001
32225
|
]
|
|
32002
32226
|
},
|
|
32227
|
+
params: {
|
|
32228
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
32229
|
+
type: "object",
|
|
32230
|
+
additionalProperties: {
|
|
32231
|
+
type: "string"
|
|
32232
|
+
},
|
|
32233
|
+
default: {}
|
|
32234
|
+
},
|
|
32003
32235
|
statusCodes: {
|
|
32004
32236
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32005
32237
|
anyOf: [
|
|
@@ -32083,6 +32315,14 @@ var schemas_default = {
|
|
|
32083
32315
|
"trim"
|
|
32084
32316
|
]
|
|
32085
32317
|
},
|
|
32318
|
+
params: {
|
|
32319
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
32320
|
+
type: "object",
|
|
32321
|
+
additionalProperties: {
|
|
32322
|
+
type: "string"
|
|
32323
|
+
},
|
|
32324
|
+
default: {}
|
|
32325
|
+
},
|
|
32086
32326
|
statusCodes: {
|
|
32087
32327
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32088
32328
|
anyOf: [
|
|
@@ -32145,6 +32385,13 @@ var schemas_default = {
|
|
|
32145
32385
|
statusCodes: [
|
|
32146
32386
|
200
|
|
32147
32387
|
]
|
|
32388
|
+
},
|
|
32389
|
+
{
|
|
32390
|
+
url: "/health",
|
|
32391
|
+
origin: "https://my-app.com",
|
|
32392
|
+
params: {
|
|
32393
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
32394
|
+
}
|
|
32148
32395
|
}
|
|
32149
32396
|
]
|
|
32150
32397
|
}
|
|
@@ -34085,6 +34332,14 @@ var schemas_default = {
|
|
|
34085
34332
|
"trim"
|
|
34086
34333
|
]
|
|
34087
34334
|
},
|
|
34335
|
+
params: {
|
|
34336
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
34337
|
+
type: "object",
|
|
34338
|
+
additionalProperties: {
|
|
34339
|
+
type: "string"
|
|
34340
|
+
},
|
|
34341
|
+
default: {}
|
|
34342
|
+
},
|
|
34088
34343
|
timeout: {
|
|
34089
34344
|
type: "integer",
|
|
34090
34345
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34257,6 +34512,14 @@ var schemas_default = {
|
|
|
34257
34512
|
"trim"
|
|
34258
34513
|
]
|
|
34259
34514
|
},
|
|
34515
|
+
params: {
|
|
34516
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
34517
|
+
type: "object",
|
|
34518
|
+
additionalProperties: {
|
|
34519
|
+
type: "string"
|
|
34520
|
+
},
|
|
34521
|
+
default: {}
|
|
34522
|
+
},
|
|
34260
34523
|
timeout: {
|
|
34261
34524
|
type: "integer",
|
|
34262
34525
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34406,6 +34669,13 @@ var schemas_default = {
|
|
|
34406
34669
|
url: "/search",
|
|
34407
34670
|
origin: "https://www.google.com"
|
|
34408
34671
|
},
|
|
34672
|
+
{
|
|
34673
|
+
url: "/dashboard",
|
|
34674
|
+
origin: "https://my-app.com",
|
|
34675
|
+
params: {
|
|
34676
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
34677
|
+
}
|
|
34678
|
+
},
|
|
34409
34679
|
{
|
|
34410
34680
|
url: "https://www.example.com",
|
|
34411
34681
|
waitUntil: {
|
|
@@ -36671,9 +36941,9 @@ var schemas_default = {
|
|
|
36671
36941
|
anyOf: [
|
|
36672
36942
|
{
|
|
36673
36943
|
title: "Screenshot (simple)",
|
|
36674
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36944
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36675
36945
|
type: "string",
|
|
36676
|
-
pattern: "([A-Za-z0-9_
|
|
36946
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36677
36947
|
transform: [
|
|
36678
36948
|
"trim"
|
|
36679
36949
|
]
|
|
@@ -36684,9 +36954,9 @@ var schemas_default = {
|
|
|
36684
36954
|
properties: {
|
|
36685
36955
|
path: {
|
|
36686
36956
|
title: "Screenshot (simple)",
|
|
36687
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
36957
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36688
36958
|
type: "string",
|
|
36689
|
-
pattern: "([A-Za-z0-9_
|
|
36959
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36690
36960
|
transform: [
|
|
36691
36961
|
"trim"
|
|
36692
36962
|
]
|
|
@@ -36917,9 +37187,9 @@ var schemas_default = {
|
|
|
36917
37187
|
schemas: {
|
|
36918
37188
|
path: {
|
|
36919
37189
|
title: "Screenshot (simple)",
|
|
36920
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
37190
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36921
37191
|
type: "string",
|
|
36922
|
-
pattern: "([A-Za-z0-9_
|
|
37192
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36923
37193
|
transform: [
|
|
36924
37194
|
"trim"
|
|
36925
37195
|
]
|
|
@@ -36930,9 +37200,9 @@ var schemas_default = {
|
|
|
36930
37200
|
properties: {
|
|
36931
37201
|
path: {
|
|
36932
37202
|
title: "Screenshot (simple)",
|
|
36933
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
37203
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
36934
37204
|
type: "string",
|
|
36935
|
-
pattern: "([A-Za-z0-9_
|
|
37205
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
36936
37206
|
transform: [
|
|
36937
37207
|
"trim"
|
|
36938
37208
|
]
|
|
@@ -37314,6 +37584,12 @@ var schemas_default = {
|
|
|
37314
37584
|
"image.png",
|
|
37315
37585
|
"static/images/image.png",
|
|
37316
37586
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
37587
|
+
"https://example.com/static/images/image.png",
|
|
37588
|
+
{
|
|
37589
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
37590
|
+
maxVariation: 0.05,
|
|
37591
|
+
overwrite: "aboveVariation"
|
|
37592
|
+
},
|
|
37317
37593
|
{
|
|
37318
37594
|
path: "image.png",
|
|
37319
37595
|
directory: "static/images",
|
|
@@ -39734,6 +40010,12 @@ var schemas_default = {
|
|
|
39734
40010
|
"html"
|
|
39735
40011
|
]
|
|
39736
40012
|
},
|
|
40013
|
+
{
|
|
40014
|
+
origin: "https://my-app.com",
|
|
40015
|
+
originParams: {
|
|
40016
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
40017
|
+
}
|
|
40018
|
+
},
|
|
39737
40019
|
{
|
|
39738
40020
|
fileTypes: [
|
|
39739
40021
|
{
|
|
@@ -41357,6 +41639,14 @@ var schemas_default = {
|
|
|
41357
41639
|
"trim"
|
|
41358
41640
|
]
|
|
41359
41641
|
},
|
|
41642
|
+
params: {
|
|
41643
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
41644
|
+
type: "object",
|
|
41645
|
+
additionalProperties: {
|
|
41646
|
+
type: "string"
|
|
41647
|
+
},
|
|
41648
|
+
default: {}
|
|
41649
|
+
},
|
|
41360
41650
|
statusCodes: {
|
|
41361
41651
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41362
41652
|
anyOf: [
|
|
@@ -41440,6 +41730,14 @@ var schemas_default = {
|
|
|
41440
41730
|
"trim"
|
|
41441
41731
|
]
|
|
41442
41732
|
},
|
|
41733
|
+
params: {
|
|
41734
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
41735
|
+
type: "object",
|
|
41736
|
+
additionalProperties: {
|
|
41737
|
+
type: "string"
|
|
41738
|
+
},
|
|
41739
|
+
default: {}
|
|
41740
|
+
},
|
|
41443
41741
|
statusCodes: {
|
|
41444
41742
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41445
41743
|
anyOf: [
|
|
@@ -41502,6 +41800,13 @@ var schemas_default = {
|
|
|
41502
41800
|
statusCodes: [
|
|
41503
41801
|
200
|
|
41504
41802
|
]
|
|
41803
|
+
},
|
|
41804
|
+
{
|
|
41805
|
+
url: "/health",
|
|
41806
|
+
origin: "https://my-app.com",
|
|
41807
|
+
params: {
|
|
41808
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
41809
|
+
}
|
|
41505
41810
|
}
|
|
41506
41811
|
]
|
|
41507
41812
|
}
|
|
@@ -43442,6 +43747,14 @@ var schemas_default = {
|
|
|
43442
43747
|
"trim"
|
|
43443
43748
|
]
|
|
43444
43749
|
},
|
|
43750
|
+
params: {
|
|
43751
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
43752
|
+
type: "object",
|
|
43753
|
+
additionalProperties: {
|
|
43754
|
+
type: "string"
|
|
43755
|
+
},
|
|
43756
|
+
default: {}
|
|
43757
|
+
},
|
|
43445
43758
|
timeout: {
|
|
43446
43759
|
type: "integer",
|
|
43447
43760
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43614,6 +43927,14 @@ var schemas_default = {
|
|
|
43614
43927
|
"trim"
|
|
43615
43928
|
]
|
|
43616
43929
|
},
|
|
43930
|
+
params: {
|
|
43931
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
43932
|
+
type: "object",
|
|
43933
|
+
additionalProperties: {
|
|
43934
|
+
type: "string"
|
|
43935
|
+
},
|
|
43936
|
+
default: {}
|
|
43937
|
+
},
|
|
43617
43938
|
timeout: {
|
|
43618
43939
|
type: "integer",
|
|
43619
43940
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43763,6 +44084,13 @@ var schemas_default = {
|
|
|
43763
44084
|
url: "/search",
|
|
43764
44085
|
origin: "https://www.google.com"
|
|
43765
44086
|
},
|
|
44087
|
+
{
|
|
44088
|
+
url: "/dashboard",
|
|
44089
|
+
origin: "https://my-app.com",
|
|
44090
|
+
params: {
|
|
44091
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
44092
|
+
}
|
|
44093
|
+
},
|
|
43766
44094
|
{
|
|
43767
44095
|
url: "https://www.example.com",
|
|
43768
44096
|
waitUntil: {
|
|
@@ -46028,9 +46356,9 @@ var schemas_default = {
|
|
|
46028
46356
|
anyOf: [
|
|
46029
46357
|
{
|
|
46030
46358
|
title: "Screenshot (simple)",
|
|
46031
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46359
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46032
46360
|
type: "string",
|
|
46033
|
-
pattern: "([A-Za-z0-9_
|
|
46361
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46034
46362
|
transform: [
|
|
46035
46363
|
"trim"
|
|
46036
46364
|
]
|
|
@@ -46041,9 +46369,9 @@ var schemas_default = {
|
|
|
46041
46369
|
properties: {
|
|
46042
46370
|
path: {
|
|
46043
46371
|
title: "Screenshot (simple)",
|
|
46044
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46372
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46045
46373
|
type: "string",
|
|
46046
|
-
pattern: "([A-Za-z0-9_
|
|
46374
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46047
46375
|
transform: [
|
|
46048
46376
|
"trim"
|
|
46049
46377
|
]
|
|
@@ -46274,9 +46602,9 @@ var schemas_default = {
|
|
|
46274
46602
|
schemas: {
|
|
46275
46603
|
path: {
|
|
46276
46604
|
title: "Screenshot (simple)",
|
|
46277
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46605
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46278
46606
|
type: "string",
|
|
46279
|
-
pattern: "([A-Za-z0-9_
|
|
46607
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46280
46608
|
transform: [
|
|
46281
46609
|
"trim"
|
|
46282
46610
|
]
|
|
@@ -46287,9 +46615,9 @@ var schemas_default = {
|
|
|
46287
46615
|
properties: {
|
|
46288
46616
|
path: {
|
|
46289
46617
|
title: "Screenshot (simple)",
|
|
46290
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
46618
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
46291
46619
|
type: "string",
|
|
46292
|
-
pattern: "([A-Za-z0-9_
|
|
46620
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
46293
46621
|
transform: [
|
|
46294
46622
|
"trim"
|
|
46295
46623
|
]
|
|
@@ -46671,6 +46999,12 @@ var schemas_default = {
|
|
|
46671
46999
|
"image.png",
|
|
46672
47000
|
"static/images/image.png",
|
|
46673
47001
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
47002
|
+
"https://example.com/static/images/image.png",
|
|
47003
|
+
{
|
|
47004
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
47005
|
+
maxVariation: 0.05,
|
|
47006
|
+
overwrite: "aboveVariation"
|
|
47007
|
+
},
|
|
46674
47008
|
{
|
|
46675
47009
|
path: "image.png",
|
|
46676
47010
|
directory: "static/images",
|
|
@@ -49494,6 +49828,14 @@ var schemas_default = {
|
|
|
49494
49828
|
"trim"
|
|
49495
49829
|
]
|
|
49496
49830
|
},
|
|
49831
|
+
params: {
|
|
49832
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
49833
|
+
type: "object",
|
|
49834
|
+
additionalProperties: {
|
|
49835
|
+
type: "string"
|
|
49836
|
+
},
|
|
49837
|
+
default: {}
|
|
49838
|
+
},
|
|
49497
49839
|
statusCodes: {
|
|
49498
49840
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49499
49841
|
anyOf: [
|
|
@@ -49577,6 +49919,14 @@ var schemas_default = {
|
|
|
49577
49919
|
"trim"
|
|
49578
49920
|
]
|
|
49579
49921
|
},
|
|
49922
|
+
params: {
|
|
49923
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
49924
|
+
type: "object",
|
|
49925
|
+
additionalProperties: {
|
|
49926
|
+
type: "string"
|
|
49927
|
+
},
|
|
49928
|
+
default: {}
|
|
49929
|
+
},
|
|
49580
49930
|
statusCodes: {
|
|
49581
49931
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49582
49932
|
anyOf: [
|
|
@@ -49639,6 +49989,13 @@ var schemas_default = {
|
|
|
49639
49989
|
statusCodes: [
|
|
49640
49990
|
200
|
|
49641
49991
|
]
|
|
49992
|
+
},
|
|
49993
|
+
{
|
|
49994
|
+
url: "/health",
|
|
49995
|
+
origin: "https://my-app.com",
|
|
49996
|
+
params: {
|
|
49997
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
49998
|
+
}
|
|
49642
49999
|
}
|
|
49643
50000
|
]
|
|
49644
50001
|
}
|
|
@@ -51579,6 +51936,14 @@ var schemas_default = {
|
|
|
51579
51936
|
"trim"
|
|
51580
51937
|
]
|
|
51581
51938
|
},
|
|
51939
|
+
params: {
|
|
51940
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
51941
|
+
type: "object",
|
|
51942
|
+
additionalProperties: {
|
|
51943
|
+
type: "string"
|
|
51944
|
+
},
|
|
51945
|
+
default: {}
|
|
51946
|
+
},
|
|
51582
51947
|
timeout: {
|
|
51583
51948
|
type: "integer",
|
|
51584
51949
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51751,6 +52116,14 @@ var schemas_default = {
|
|
|
51751
52116
|
"trim"
|
|
51752
52117
|
]
|
|
51753
52118
|
},
|
|
52119
|
+
params: {
|
|
52120
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
52121
|
+
type: "object",
|
|
52122
|
+
additionalProperties: {
|
|
52123
|
+
type: "string"
|
|
52124
|
+
},
|
|
52125
|
+
default: {}
|
|
52126
|
+
},
|
|
51754
52127
|
timeout: {
|
|
51755
52128
|
type: "integer",
|
|
51756
52129
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51900,6 +52273,13 @@ var schemas_default = {
|
|
|
51900
52273
|
url: "/search",
|
|
51901
52274
|
origin: "https://www.google.com"
|
|
51902
52275
|
},
|
|
52276
|
+
{
|
|
52277
|
+
url: "/dashboard",
|
|
52278
|
+
origin: "https://my-app.com",
|
|
52279
|
+
params: {
|
|
52280
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
52281
|
+
}
|
|
52282
|
+
},
|
|
51903
52283
|
{
|
|
51904
52284
|
url: "https://www.example.com",
|
|
51905
52285
|
waitUntil: {
|
|
@@ -54165,9 +54545,9 @@ var schemas_default = {
|
|
|
54165
54545
|
anyOf: [
|
|
54166
54546
|
{
|
|
54167
54547
|
title: "Screenshot (simple)",
|
|
54168
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54548
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54169
54549
|
type: "string",
|
|
54170
|
-
pattern: "([A-Za-z0-9_
|
|
54550
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54171
54551
|
transform: [
|
|
54172
54552
|
"trim"
|
|
54173
54553
|
]
|
|
@@ -54178,9 +54558,9 @@ var schemas_default = {
|
|
|
54178
54558
|
properties: {
|
|
54179
54559
|
path: {
|
|
54180
54560
|
title: "Screenshot (simple)",
|
|
54181
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54561
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54182
54562
|
type: "string",
|
|
54183
|
-
pattern: "([A-Za-z0-9_
|
|
54563
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54184
54564
|
transform: [
|
|
54185
54565
|
"trim"
|
|
54186
54566
|
]
|
|
@@ -54411,9 +54791,9 @@ var schemas_default = {
|
|
|
54411
54791
|
schemas: {
|
|
54412
54792
|
path: {
|
|
54413
54793
|
title: "Screenshot (simple)",
|
|
54414
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54794
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54415
54795
|
type: "string",
|
|
54416
|
-
pattern: "([A-Za-z0-9_
|
|
54796
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54417
54797
|
transform: [
|
|
54418
54798
|
"trim"
|
|
54419
54799
|
]
|
|
@@ -54424,9 +54804,9 @@ var schemas_default = {
|
|
|
54424
54804
|
properties: {
|
|
54425
54805
|
path: {
|
|
54426
54806
|
title: "Screenshot (simple)",
|
|
54427
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
54807
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
54428
54808
|
type: "string",
|
|
54429
|
-
pattern: "([A-Za-z0-9_
|
|
54809
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
54430
54810
|
transform: [
|
|
54431
54811
|
"trim"
|
|
54432
54812
|
]
|
|
@@ -54808,6 +55188,12 @@ var schemas_default = {
|
|
|
54808
55188
|
"image.png",
|
|
54809
55189
|
"static/images/image.png",
|
|
54810
55190
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
55191
|
+
"https://example.com/static/images/image.png",
|
|
55192
|
+
{
|
|
55193
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
55194
|
+
maxVariation: 0.05,
|
|
55195
|
+
overwrite: "aboveVariation"
|
|
55196
|
+
},
|
|
54811
55197
|
{
|
|
54812
55198
|
path: "image.png",
|
|
54813
55199
|
directory: "static/images",
|
|
@@ -59341,6 +59727,14 @@ var schemas_default = {
|
|
|
59341
59727
|
"trim"
|
|
59342
59728
|
]
|
|
59343
59729
|
},
|
|
59730
|
+
params: {
|
|
59731
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
59732
|
+
type: "object",
|
|
59733
|
+
additionalProperties: {
|
|
59734
|
+
type: "string"
|
|
59735
|
+
},
|
|
59736
|
+
default: {}
|
|
59737
|
+
},
|
|
59344
59738
|
statusCodes: {
|
|
59345
59739
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59346
59740
|
anyOf: [
|
|
@@ -59424,6 +59818,14 @@ var schemas_default = {
|
|
|
59424
59818
|
"trim"
|
|
59425
59819
|
]
|
|
59426
59820
|
},
|
|
59821
|
+
params: {
|
|
59822
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
59823
|
+
type: "object",
|
|
59824
|
+
additionalProperties: {
|
|
59825
|
+
type: "string"
|
|
59826
|
+
},
|
|
59827
|
+
default: {}
|
|
59828
|
+
},
|
|
59427
59829
|
statusCodes: {
|
|
59428
59830
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59429
59831
|
anyOf: [
|
|
@@ -59486,6 +59888,13 @@ var schemas_default = {
|
|
|
59486
59888
|
statusCodes: [
|
|
59487
59889
|
200
|
|
59488
59890
|
]
|
|
59891
|
+
},
|
|
59892
|
+
{
|
|
59893
|
+
url: "/health",
|
|
59894
|
+
origin: "https://my-app.com",
|
|
59895
|
+
params: {
|
|
59896
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
59897
|
+
}
|
|
59489
59898
|
}
|
|
59490
59899
|
]
|
|
59491
59900
|
}
|
|
@@ -61426,6 +61835,14 @@ var schemas_default = {
|
|
|
61426
61835
|
"trim"
|
|
61427
61836
|
]
|
|
61428
61837
|
},
|
|
61838
|
+
params: {
|
|
61839
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
61840
|
+
type: "object",
|
|
61841
|
+
additionalProperties: {
|
|
61842
|
+
type: "string"
|
|
61843
|
+
},
|
|
61844
|
+
default: {}
|
|
61845
|
+
},
|
|
61429
61846
|
timeout: {
|
|
61430
61847
|
type: "integer",
|
|
61431
61848
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61598,6 +62015,14 @@ var schemas_default = {
|
|
|
61598
62015
|
"trim"
|
|
61599
62016
|
]
|
|
61600
62017
|
},
|
|
62018
|
+
params: {
|
|
62019
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
62020
|
+
type: "object",
|
|
62021
|
+
additionalProperties: {
|
|
62022
|
+
type: "string"
|
|
62023
|
+
},
|
|
62024
|
+
default: {}
|
|
62025
|
+
},
|
|
61601
62026
|
timeout: {
|
|
61602
62027
|
type: "integer",
|
|
61603
62028
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61747,6 +62172,13 @@ var schemas_default = {
|
|
|
61747
62172
|
url: "/search",
|
|
61748
62173
|
origin: "https://www.google.com"
|
|
61749
62174
|
},
|
|
62175
|
+
{
|
|
62176
|
+
url: "/dashboard",
|
|
62177
|
+
origin: "https://my-app.com",
|
|
62178
|
+
params: {
|
|
62179
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
62180
|
+
}
|
|
62181
|
+
},
|
|
61750
62182
|
{
|
|
61751
62183
|
url: "https://www.example.com",
|
|
61752
62184
|
waitUntil: {
|
|
@@ -64012,9 +64444,9 @@ var schemas_default = {
|
|
|
64012
64444
|
anyOf: [
|
|
64013
64445
|
{
|
|
64014
64446
|
title: "Screenshot (simple)",
|
|
64015
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64447
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64016
64448
|
type: "string",
|
|
64017
|
-
pattern: "([A-Za-z0-9_
|
|
64449
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64018
64450
|
transform: [
|
|
64019
64451
|
"trim"
|
|
64020
64452
|
]
|
|
@@ -64025,9 +64457,9 @@ var schemas_default = {
|
|
|
64025
64457
|
properties: {
|
|
64026
64458
|
path: {
|
|
64027
64459
|
title: "Screenshot (simple)",
|
|
64028
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64460
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64029
64461
|
type: "string",
|
|
64030
|
-
pattern: "([A-Za-z0-9_
|
|
64462
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64031
64463
|
transform: [
|
|
64032
64464
|
"trim"
|
|
64033
64465
|
]
|
|
@@ -64258,9 +64690,9 @@ var schemas_default = {
|
|
|
64258
64690
|
schemas: {
|
|
64259
64691
|
path: {
|
|
64260
64692
|
title: "Screenshot (simple)",
|
|
64261
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64693
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64262
64694
|
type: "string",
|
|
64263
|
-
pattern: "([A-Za-z0-9_
|
|
64695
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64264
64696
|
transform: [
|
|
64265
64697
|
"trim"
|
|
64266
64698
|
]
|
|
@@ -64271,9 +64703,9 @@ var schemas_default = {
|
|
|
64271
64703
|
properties: {
|
|
64272
64704
|
path: {
|
|
64273
64705
|
title: "Screenshot (simple)",
|
|
64274
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
64706
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
64275
64707
|
type: "string",
|
|
64276
|
-
pattern: "([A-Za-z0-9_
|
|
64708
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
64277
64709
|
transform: [
|
|
64278
64710
|
"trim"
|
|
64279
64711
|
]
|
|
@@ -64655,6 +65087,12 @@ var schemas_default = {
|
|
|
64655
65087
|
"image.png",
|
|
64656
65088
|
"static/images/image.png",
|
|
64657
65089
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
65090
|
+
"https://example.com/static/images/image.png",
|
|
65091
|
+
{
|
|
65092
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
65093
|
+
maxVariation: 0.05,
|
|
65094
|
+
overwrite: "aboveVariation"
|
|
65095
|
+
},
|
|
64658
65096
|
{
|
|
64659
65097
|
path: "image.png",
|
|
64660
65098
|
directory: "static/images",
|
|
@@ -67478,6 +67916,14 @@ var schemas_default = {
|
|
|
67478
67916
|
"trim"
|
|
67479
67917
|
]
|
|
67480
67918
|
},
|
|
67919
|
+
params: {
|
|
67920
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
67921
|
+
type: "object",
|
|
67922
|
+
additionalProperties: {
|
|
67923
|
+
type: "string"
|
|
67924
|
+
},
|
|
67925
|
+
default: {}
|
|
67926
|
+
},
|
|
67481
67927
|
statusCodes: {
|
|
67482
67928
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67483
67929
|
anyOf: [
|
|
@@ -67561,6 +68007,14 @@ var schemas_default = {
|
|
|
67561
68007
|
"trim"
|
|
67562
68008
|
]
|
|
67563
68009
|
},
|
|
68010
|
+
params: {
|
|
68011
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
68012
|
+
type: "object",
|
|
68013
|
+
additionalProperties: {
|
|
68014
|
+
type: "string"
|
|
68015
|
+
},
|
|
68016
|
+
default: {}
|
|
68017
|
+
},
|
|
67564
68018
|
statusCodes: {
|
|
67565
68019
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67566
68020
|
anyOf: [
|
|
@@ -67623,6 +68077,13 @@ var schemas_default = {
|
|
|
67623
68077
|
statusCodes: [
|
|
67624
68078
|
200
|
|
67625
68079
|
]
|
|
68080
|
+
},
|
|
68081
|
+
{
|
|
68082
|
+
url: "/health",
|
|
68083
|
+
origin: "https://my-app.com",
|
|
68084
|
+
params: {
|
|
68085
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
68086
|
+
}
|
|
67626
68087
|
}
|
|
67627
68088
|
]
|
|
67628
68089
|
}
|
|
@@ -69563,6 +70024,14 @@ var schemas_default = {
|
|
|
69563
70024
|
"trim"
|
|
69564
70025
|
]
|
|
69565
70026
|
},
|
|
70027
|
+
params: {
|
|
70028
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
70029
|
+
type: "object",
|
|
70030
|
+
additionalProperties: {
|
|
70031
|
+
type: "string"
|
|
70032
|
+
},
|
|
70033
|
+
default: {}
|
|
70034
|
+
},
|
|
69566
70035
|
timeout: {
|
|
69567
70036
|
type: "integer",
|
|
69568
70037
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69735,6 +70204,14 @@ var schemas_default = {
|
|
|
69735
70204
|
"trim"
|
|
69736
70205
|
]
|
|
69737
70206
|
},
|
|
70207
|
+
params: {
|
|
70208
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
70209
|
+
type: "object",
|
|
70210
|
+
additionalProperties: {
|
|
70211
|
+
type: "string"
|
|
70212
|
+
},
|
|
70213
|
+
default: {}
|
|
70214
|
+
},
|
|
69738
70215
|
timeout: {
|
|
69739
70216
|
type: "integer",
|
|
69740
70217
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69884,6 +70361,13 @@ var schemas_default = {
|
|
|
69884
70361
|
url: "/search",
|
|
69885
70362
|
origin: "https://www.google.com"
|
|
69886
70363
|
},
|
|
70364
|
+
{
|
|
70365
|
+
url: "/dashboard",
|
|
70366
|
+
origin: "https://my-app.com",
|
|
70367
|
+
params: {
|
|
70368
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
70369
|
+
}
|
|
70370
|
+
},
|
|
69887
70371
|
{
|
|
69888
70372
|
url: "https://www.example.com",
|
|
69889
70373
|
waitUntil: {
|
|
@@ -72149,9 +72633,9 @@ var schemas_default = {
|
|
|
72149
72633
|
anyOf: [
|
|
72150
72634
|
{
|
|
72151
72635
|
title: "Screenshot (simple)",
|
|
72152
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72636
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72153
72637
|
type: "string",
|
|
72154
|
-
pattern: "([A-Za-z0-9_
|
|
72638
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72155
72639
|
transform: [
|
|
72156
72640
|
"trim"
|
|
72157
72641
|
]
|
|
@@ -72162,9 +72646,9 @@ var schemas_default = {
|
|
|
72162
72646
|
properties: {
|
|
72163
72647
|
path: {
|
|
72164
72648
|
title: "Screenshot (simple)",
|
|
72165
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72649
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72166
72650
|
type: "string",
|
|
72167
|
-
pattern: "([A-Za-z0-9_
|
|
72651
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72168
72652
|
transform: [
|
|
72169
72653
|
"trim"
|
|
72170
72654
|
]
|
|
@@ -72395,9 +72879,9 @@ var schemas_default = {
|
|
|
72395
72879
|
schemas: {
|
|
72396
72880
|
path: {
|
|
72397
72881
|
title: "Screenshot (simple)",
|
|
72398
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72882
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72399
72883
|
type: "string",
|
|
72400
|
-
pattern: "([A-Za-z0-9_
|
|
72884
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72401
72885
|
transform: [
|
|
72402
72886
|
"trim"
|
|
72403
72887
|
]
|
|
@@ -72408,9 +72892,9 @@ var schemas_default = {
|
|
|
72408
72892
|
properties: {
|
|
72409
72893
|
path: {
|
|
72410
72894
|
title: "Screenshot (simple)",
|
|
72411
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
72895
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
72412
72896
|
type: "string",
|
|
72413
|
-
pattern: "([A-Za-z0-9_
|
|
72897
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
72414
72898
|
transform: [
|
|
72415
72899
|
"trim"
|
|
72416
72900
|
]
|
|
@@ -72792,6 +73276,12 @@ var schemas_default = {
|
|
|
72792
73276
|
"image.png",
|
|
72793
73277
|
"static/images/image.png",
|
|
72794
73278
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
73279
|
+
"https://example.com/static/images/image.png",
|
|
73280
|
+
{
|
|
73281
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
73282
|
+
maxVariation: 0.05,
|
|
73283
|
+
overwrite: "aboveVariation"
|
|
73284
|
+
},
|
|
72795
73285
|
{
|
|
72796
73286
|
path: "image.png",
|
|
72797
73287
|
directory: "static/images",
|
|
@@ -76476,9 +76966,9 @@ var schemas_default = {
|
|
|
76476
76966
|
anyOf: [
|
|
76477
76967
|
{
|
|
76478
76968
|
title: "Screenshot (simple)",
|
|
76479
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76969
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76480
76970
|
type: "string",
|
|
76481
|
-
pattern: "([A-Za-z0-9_
|
|
76971
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76482
76972
|
transform: [
|
|
76483
76973
|
"trim"
|
|
76484
76974
|
]
|
|
@@ -76489,9 +76979,9 @@ var schemas_default = {
|
|
|
76489
76979
|
properties: {
|
|
76490
76980
|
path: {
|
|
76491
76981
|
title: "Screenshot (simple)",
|
|
76492
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
76982
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76493
76983
|
type: "string",
|
|
76494
|
-
pattern: "([A-Za-z0-9_
|
|
76984
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76495
76985
|
transform: [
|
|
76496
76986
|
"trim"
|
|
76497
76987
|
]
|
|
@@ -76722,9 +77212,9 @@ var schemas_default = {
|
|
|
76722
77212
|
schemas: {
|
|
76723
77213
|
path: {
|
|
76724
77214
|
title: "Screenshot (simple)",
|
|
76725
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
77215
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76726
77216
|
type: "string",
|
|
76727
|
-
pattern: "([A-Za-z0-9_
|
|
77217
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76728
77218
|
transform: [
|
|
76729
77219
|
"trim"
|
|
76730
77220
|
]
|
|
@@ -76735,9 +77225,9 @@ var schemas_default = {
|
|
|
76735
77225
|
properties: {
|
|
76736
77226
|
path: {
|
|
76737
77227
|
title: "Screenshot (simple)",
|
|
76738
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
77228
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
76739
77229
|
type: "string",
|
|
76740
|
-
pattern: "([A-Za-z0-9_
|
|
77230
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
76741
77231
|
transform: [
|
|
76742
77232
|
"trim"
|
|
76743
77233
|
]
|
|
@@ -77119,6 +77609,12 @@ var schemas_default = {
|
|
|
77119
77609
|
"image.png",
|
|
77120
77610
|
"static/images/image.png",
|
|
77121
77611
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
77612
|
+
"https://example.com/static/images/image.png",
|
|
77613
|
+
{
|
|
77614
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
77615
|
+
maxVariation: 0.05,
|
|
77616
|
+
overwrite: "aboveVariation"
|
|
77617
|
+
},
|
|
77122
77618
|
{
|
|
77123
77619
|
path: "image.png",
|
|
77124
77620
|
directory: "static/images",
|
|
@@ -78707,6 +79203,14 @@ var schemas_default = {
|
|
|
78707
79203
|
"trim"
|
|
78708
79204
|
]
|
|
78709
79205
|
},
|
|
79206
|
+
params: {
|
|
79207
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
79208
|
+
type: "object",
|
|
79209
|
+
additionalProperties: {
|
|
79210
|
+
type: "string"
|
|
79211
|
+
},
|
|
79212
|
+
default: {}
|
|
79213
|
+
},
|
|
78710
79214
|
statusCodes: {
|
|
78711
79215
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78712
79216
|
anyOf: [
|
|
@@ -78790,6 +79294,14 @@ var schemas_default = {
|
|
|
78790
79294
|
"trim"
|
|
78791
79295
|
]
|
|
78792
79296
|
},
|
|
79297
|
+
params: {
|
|
79298
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
79299
|
+
type: "object",
|
|
79300
|
+
additionalProperties: {
|
|
79301
|
+
type: "string"
|
|
79302
|
+
},
|
|
79303
|
+
default: {}
|
|
79304
|
+
},
|
|
78793
79305
|
statusCodes: {
|
|
78794
79306
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78795
79307
|
anyOf: [
|
|
@@ -78852,6 +79364,13 @@ var schemas_default = {
|
|
|
78852
79364
|
statusCodes: [
|
|
78853
79365
|
200
|
|
78854
79366
|
]
|
|
79367
|
+
},
|
|
79368
|
+
{
|
|
79369
|
+
url: "/health",
|
|
79370
|
+
origin: "https://my-app.com",
|
|
79371
|
+
params: {
|
|
79372
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
79373
|
+
}
|
|
78855
79374
|
}
|
|
78856
79375
|
]
|
|
78857
79376
|
}
|
|
@@ -80792,6 +81311,14 @@ var schemas_default = {
|
|
|
80792
81311
|
"trim"
|
|
80793
81312
|
]
|
|
80794
81313
|
},
|
|
81314
|
+
params: {
|
|
81315
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
81316
|
+
type: "object",
|
|
81317
|
+
additionalProperties: {
|
|
81318
|
+
type: "string"
|
|
81319
|
+
},
|
|
81320
|
+
default: {}
|
|
81321
|
+
},
|
|
80795
81322
|
timeout: {
|
|
80796
81323
|
type: "integer",
|
|
80797
81324
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -80964,6 +81491,14 @@ var schemas_default = {
|
|
|
80964
81491
|
"trim"
|
|
80965
81492
|
]
|
|
80966
81493
|
},
|
|
81494
|
+
params: {
|
|
81495
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
81496
|
+
type: "object",
|
|
81497
|
+
additionalProperties: {
|
|
81498
|
+
type: "string"
|
|
81499
|
+
},
|
|
81500
|
+
default: {}
|
|
81501
|
+
},
|
|
80967
81502
|
timeout: {
|
|
80968
81503
|
type: "integer",
|
|
80969
81504
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -81113,6 +81648,13 @@ var schemas_default = {
|
|
|
81113
81648
|
url: "/search",
|
|
81114
81649
|
origin: "https://www.google.com"
|
|
81115
81650
|
},
|
|
81651
|
+
{
|
|
81652
|
+
url: "/dashboard",
|
|
81653
|
+
origin: "https://my-app.com",
|
|
81654
|
+
params: {
|
|
81655
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
81656
|
+
}
|
|
81657
|
+
},
|
|
81116
81658
|
{
|
|
81117
81659
|
url: "https://www.example.com",
|
|
81118
81660
|
waitUntil: {
|
|
@@ -83378,9 +83920,9 @@ var schemas_default = {
|
|
|
83378
83920
|
anyOf: [
|
|
83379
83921
|
{
|
|
83380
83922
|
title: "Screenshot (simple)",
|
|
83381
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83923
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83382
83924
|
type: "string",
|
|
83383
|
-
pattern: "([A-Za-z0-9_
|
|
83925
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83384
83926
|
transform: [
|
|
83385
83927
|
"trim"
|
|
83386
83928
|
]
|
|
@@ -83391,9 +83933,9 @@ var schemas_default = {
|
|
|
83391
83933
|
properties: {
|
|
83392
83934
|
path: {
|
|
83393
83935
|
title: "Screenshot (simple)",
|
|
83394
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
83936
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83395
83937
|
type: "string",
|
|
83396
|
-
pattern: "([A-Za-z0-9_
|
|
83938
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83397
83939
|
transform: [
|
|
83398
83940
|
"trim"
|
|
83399
83941
|
]
|
|
@@ -83624,9 +84166,9 @@ var schemas_default = {
|
|
|
83624
84166
|
schemas: {
|
|
83625
84167
|
path: {
|
|
83626
84168
|
title: "Screenshot (simple)",
|
|
83627
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
84169
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83628
84170
|
type: "string",
|
|
83629
|
-
pattern: "([A-Za-z0-9_
|
|
84171
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83630
84172
|
transform: [
|
|
83631
84173
|
"trim"
|
|
83632
84174
|
]
|
|
@@ -83637,9 +84179,9 @@ var schemas_default = {
|
|
|
83637
84179
|
properties: {
|
|
83638
84180
|
path: {
|
|
83639
84181
|
title: "Screenshot (simple)",
|
|
83640
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
84182
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
83641
84183
|
type: "string",
|
|
83642
|
-
pattern: "([A-Za-z0-9_
|
|
84184
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
83643
84185
|
transform: [
|
|
83644
84186
|
"trim"
|
|
83645
84187
|
]
|
|
@@ -84021,6 +84563,12 @@ var schemas_default = {
|
|
|
84021
84563
|
"image.png",
|
|
84022
84564
|
"static/images/image.png",
|
|
84023
84565
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
84566
|
+
"https://example.com/static/images/image.png",
|
|
84567
|
+
{
|
|
84568
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
84569
|
+
maxVariation: 0.05,
|
|
84570
|
+
overwrite: "aboveVariation"
|
|
84571
|
+
},
|
|
84024
84572
|
{
|
|
84025
84573
|
path: "image.png",
|
|
84026
84574
|
directory: "static/images",
|
|
@@ -86844,6 +87392,14 @@ var schemas_default = {
|
|
|
86844
87392
|
"trim"
|
|
86845
87393
|
]
|
|
86846
87394
|
},
|
|
87395
|
+
params: {
|
|
87396
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
87397
|
+
type: "object",
|
|
87398
|
+
additionalProperties: {
|
|
87399
|
+
type: "string"
|
|
87400
|
+
},
|
|
87401
|
+
default: {}
|
|
87402
|
+
},
|
|
86847
87403
|
statusCodes: {
|
|
86848
87404
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86849
87405
|
anyOf: [
|
|
@@ -86927,6 +87483,14 @@ var schemas_default = {
|
|
|
86927
87483
|
"trim"
|
|
86928
87484
|
]
|
|
86929
87485
|
},
|
|
87486
|
+
params: {
|
|
87487
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
87488
|
+
type: "object",
|
|
87489
|
+
additionalProperties: {
|
|
87490
|
+
type: "string"
|
|
87491
|
+
},
|
|
87492
|
+
default: {}
|
|
87493
|
+
},
|
|
86930
87494
|
statusCodes: {
|
|
86931
87495
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86932
87496
|
anyOf: [
|
|
@@ -86989,6 +87553,13 @@ var schemas_default = {
|
|
|
86989
87553
|
statusCodes: [
|
|
86990
87554
|
200
|
|
86991
87555
|
]
|
|
87556
|
+
},
|
|
87557
|
+
{
|
|
87558
|
+
url: "/health",
|
|
87559
|
+
origin: "https://my-app.com",
|
|
87560
|
+
params: {
|
|
87561
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
87562
|
+
}
|
|
86992
87563
|
}
|
|
86993
87564
|
]
|
|
86994
87565
|
}
|
|
@@ -88929,6 +89500,14 @@ var schemas_default = {
|
|
|
88929
89500
|
"trim"
|
|
88930
89501
|
]
|
|
88931
89502
|
},
|
|
89503
|
+
params: {
|
|
89504
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
89505
|
+
type: "object",
|
|
89506
|
+
additionalProperties: {
|
|
89507
|
+
type: "string"
|
|
89508
|
+
},
|
|
89509
|
+
default: {}
|
|
89510
|
+
},
|
|
88932
89511
|
timeout: {
|
|
88933
89512
|
type: "integer",
|
|
88934
89513
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89101,6 +89680,14 @@ var schemas_default = {
|
|
|
89101
89680
|
"trim"
|
|
89102
89681
|
]
|
|
89103
89682
|
},
|
|
89683
|
+
params: {
|
|
89684
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
89685
|
+
type: "object",
|
|
89686
|
+
additionalProperties: {
|
|
89687
|
+
type: "string"
|
|
89688
|
+
},
|
|
89689
|
+
default: {}
|
|
89690
|
+
},
|
|
89104
89691
|
timeout: {
|
|
89105
89692
|
type: "integer",
|
|
89106
89693
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89250,6 +89837,13 @@ var schemas_default = {
|
|
|
89250
89837
|
url: "/search",
|
|
89251
89838
|
origin: "https://www.google.com"
|
|
89252
89839
|
},
|
|
89840
|
+
{
|
|
89841
|
+
url: "/dashboard",
|
|
89842
|
+
origin: "https://my-app.com",
|
|
89843
|
+
params: {
|
|
89844
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
89845
|
+
}
|
|
89846
|
+
},
|
|
89253
89847
|
{
|
|
89254
89848
|
url: "https://www.example.com",
|
|
89255
89849
|
waitUntil: {
|
|
@@ -91515,9 +92109,9 @@ var schemas_default = {
|
|
|
91515
92109
|
anyOf: [
|
|
91516
92110
|
{
|
|
91517
92111
|
title: "Screenshot (simple)",
|
|
91518
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
92112
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91519
92113
|
type: "string",
|
|
91520
|
-
pattern: "([A-Za-z0-9_
|
|
92114
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91521
92115
|
transform: [
|
|
91522
92116
|
"trim"
|
|
91523
92117
|
]
|
|
@@ -91528,9 +92122,9 @@ var schemas_default = {
|
|
|
91528
92122
|
properties: {
|
|
91529
92123
|
path: {
|
|
91530
92124
|
title: "Screenshot (simple)",
|
|
91531
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
92125
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91532
92126
|
type: "string",
|
|
91533
|
-
pattern: "([A-Za-z0-9_
|
|
92127
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91534
92128
|
transform: [
|
|
91535
92129
|
"trim"
|
|
91536
92130
|
]
|
|
@@ -91761,9 +92355,9 @@ var schemas_default = {
|
|
|
91761
92355
|
schemas: {
|
|
91762
92356
|
path: {
|
|
91763
92357
|
title: "Screenshot (simple)",
|
|
91764
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
92358
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91765
92359
|
type: "string",
|
|
91766
|
-
pattern: "([A-Za-z0-9_
|
|
92360
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91767
92361
|
transform: [
|
|
91768
92362
|
"trim"
|
|
91769
92363
|
]
|
|
@@ -91774,9 +92368,9 @@ var schemas_default = {
|
|
|
91774
92368
|
properties: {
|
|
91775
92369
|
path: {
|
|
91776
92370
|
title: "Screenshot (simple)",
|
|
91777
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
92371
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
91778
92372
|
type: "string",
|
|
91779
|
-
pattern: "([A-Za-z0-9_
|
|
92373
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
91780
92374
|
transform: [
|
|
91781
92375
|
"trim"
|
|
91782
92376
|
]
|
|
@@ -92158,6 +92752,12 @@ var schemas_default = {
|
|
|
92158
92752
|
"image.png",
|
|
92159
92753
|
"static/images/image.png",
|
|
92160
92754
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
92755
|
+
"https://example.com/static/images/image.png",
|
|
92756
|
+
{
|
|
92757
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
92758
|
+
maxVariation: 0.05,
|
|
92759
|
+
overwrite: "aboveVariation"
|
|
92760
|
+
},
|
|
92161
92761
|
{
|
|
92162
92762
|
path: "image.png",
|
|
92163
92763
|
directory: "static/images",
|
|
@@ -95261,6 +95861,14 @@ var schemas_default = {
|
|
|
95261
95861
|
"trim"
|
|
95262
95862
|
]
|
|
95263
95863
|
},
|
|
95864
|
+
params: {
|
|
95865
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
95866
|
+
type: "object",
|
|
95867
|
+
additionalProperties: {
|
|
95868
|
+
type: "string"
|
|
95869
|
+
},
|
|
95870
|
+
default: {}
|
|
95871
|
+
},
|
|
95264
95872
|
statusCodes: {
|
|
95265
95873
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95266
95874
|
anyOf: [
|
|
@@ -95344,6 +95952,14 @@ var schemas_default = {
|
|
|
95344
95952
|
"trim"
|
|
95345
95953
|
]
|
|
95346
95954
|
},
|
|
95955
|
+
params: {
|
|
95956
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
95957
|
+
type: "object",
|
|
95958
|
+
additionalProperties: {
|
|
95959
|
+
type: "string"
|
|
95960
|
+
},
|
|
95961
|
+
default: {}
|
|
95962
|
+
},
|
|
95347
95963
|
statusCodes: {
|
|
95348
95964
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95349
95965
|
anyOf: [
|
|
@@ -95406,6 +96022,13 @@ var schemas_default = {
|
|
|
95406
96022
|
statusCodes: [
|
|
95407
96023
|
200
|
|
95408
96024
|
]
|
|
96025
|
+
},
|
|
96026
|
+
{
|
|
96027
|
+
url: "/health",
|
|
96028
|
+
origin: "https://my-app.com",
|
|
96029
|
+
params: {
|
|
96030
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
96031
|
+
}
|
|
95409
96032
|
}
|
|
95410
96033
|
]
|
|
95411
96034
|
}
|
|
@@ -97346,6 +97969,14 @@ var schemas_default = {
|
|
|
97346
97969
|
"trim"
|
|
97347
97970
|
]
|
|
97348
97971
|
},
|
|
97972
|
+
params: {
|
|
97973
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
97974
|
+
type: "object",
|
|
97975
|
+
additionalProperties: {
|
|
97976
|
+
type: "string"
|
|
97977
|
+
},
|
|
97978
|
+
default: {}
|
|
97979
|
+
},
|
|
97349
97980
|
timeout: {
|
|
97350
97981
|
type: "integer",
|
|
97351
97982
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97518,6 +98149,14 @@ var schemas_default = {
|
|
|
97518
98149
|
"trim"
|
|
97519
98150
|
]
|
|
97520
98151
|
},
|
|
98152
|
+
params: {
|
|
98153
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
98154
|
+
type: "object",
|
|
98155
|
+
additionalProperties: {
|
|
98156
|
+
type: "string"
|
|
98157
|
+
},
|
|
98158
|
+
default: {}
|
|
98159
|
+
},
|
|
97521
98160
|
timeout: {
|
|
97522
98161
|
type: "integer",
|
|
97523
98162
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97667,6 +98306,13 @@ var schemas_default = {
|
|
|
97667
98306
|
url: "/search",
|
|
97668
98307
|
origin: "https://www.google.com"
|
|
97669
98308
|
},
|
|
98309
|
+
{
|
|
98310
|
+
url: "/dashboard",
|
|
98311
|
+
origin: "https://my-app.com",
|
|
98312
|
+
params: {
|
|
98313
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
98314
|
+
}
|
|
98315
|
+
},
|
|
97670
98316
|
{
|
|
97671
98317
|
url: "https://www.example.com",
|
|
97672
98318
|
waitUntil: {
|
|
@@ -99932,9 +100578,9 @@ var schemas_default = {
|
|
|
99932
100578
|
anyOf: [
|
|
99933
100579
|
{
|
|
99934
100580
|
title: "Screenshot (simple)",
|
|
99935
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100581
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
99936
100582
|
type: "string",
|
|
99937
|
-
pattern: "([A-Za-z0-9_
|
|
100583
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
99938
100584
|
transform: [
|
|
99939
100585
|
"trim"
|
|
99940
100586
|
]
|
|
@@ -99945,9 +100591,9 @@ var schemas_default = {
|
|
|
99945
100591
|
properties: {
|
|
99946
100592
|
path: {
|
|
99947
100593
|
title: "Screenshot (simple)",
|
|
99948
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100594
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
99949
100595
|
type: "string",
|
|
99950
|
-
pattern: "([A-Za-z0-9_
|
|
100596
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
99951
100597
|
transform: [
|
|
99952
100598
|
"trim"
|
|
99953
100599
|
]
|
|
@@ -100178,9 +100824,9 @@ var schemas_default = {
|
|
|
100178
100824
|
schemas: {
|
|
100179
100825
|
path: {
|
|
100180
100826
|
title: "Screenshot (simple)",
|
|
100181
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100827
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
100182
100828
|
type: "string",
|
|
100183
|
-
pattern: "([A-Za-z0-9_
|
|
100829
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
100184
100830
|
transform: [
|
|
100185
100831
|
"trim"
|
|
100186
100832
|
]
|
|
@@ -100191,9 +100837,9 @@ var schemas_default = {
|
|
|
100191
100837
|
properties: {
|
|
100192
100838
|
path: {
|
|
100193
100839
|
title: "Screenshot (simple)",
|
|
100194
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
100840
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
100195
100841
|
type: "string",
|
|
100196
|
-
pattern: "([A-Za-z0-9_
|
|
100842
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
100197
100843
|
transform: [
|
|
100198
100844
|
"trim"
|
|
100199
100845
|
]
|
|
@@ -100575,6 +101221,12 @@ var schemas_default = {
|
|
|
100575
101221
|
"image.png",
|
|
100576
101222
|
"static/images/image.png",
|
|
100577
101223
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
101224
|
+
"https://example.com/static/images/image.png",
|
|
101225
|
+
{
|
|
101226
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
101227
|
+
maxVariation: 0.05,
|
|
101228
|
+
overwrite: "aboveVariation"
|
|
101229
|
+
},
|
|
100578
101230
|
{
|
|
100579
101231
|
path: "image.png",
|
|
100580
101232
|
directory: "static/images",
|
|
@@ -103751,6 +104403,14 @@ var schemas_default = {
|
|
|
103751
104403
|
"trim"
|
|
103752
104404
|
]
|
|
103753
104405
|
},
|
|
104406
|
+
params: {
|
|
104407
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
104408
|
+
type: "object",
|
|
104409
|
+
additionalProperties: {
|
|
104410
|
+
type: "string"
|
|
104411
|
+
},
|
|
104412
|
+
default: {}
|
|
104413
|
+
},
|
|
103754
104414
|
statusCodes: {
|
|
103755
104415
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103756
104416
|
anyOf: [
|
|
@@ -103834,6 +104494,14 @@ var schemas_default = {
|
|
|
103834
104494
|
"trim"
|
|
103835
104495
|
]
|
|
103836
104496
|
},
|
|
104497
|
+
params: {
|
|
104498
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
104499
|
+
type: "object",
|
|
104500
|
+
additionalProperties: {
|
|
104501
|
+
type: "string"
|
|
104502
|
+
},
|
|
104503
|
+
default: {}
|
|
104504
|
+
},
|
|
103837
104505
|
statusCodes: {
|
|
103838
104506
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103839
104507
|
anyOf: [
|
|
@@ -103896,6 +104564,13 @@ var schemas_default = {
|
|
|
103896
104564
|
statusCodes: [
|
|
103897
104565
|
200
|
|
103898
104566
|
]
|
|
104567
|
+
},
|
|
104568
|
+
{
|
|
104569
|
+
url: "/health",
|
|
104570
|
+
origin: "https://my-app.com",
|
|
104571
|
+
params: {
|
|
104572
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
104573
|
+
}
|
|
103899
104574
|
}
|
|
103900
104575
|
]
|
|
103901
104576
|
}
|
|
@@ -105836,6 +106511,14 @@ var schemas_default = {
|
|
|
105836
106511
|
"trim"
|
|
105837
106512
|
]
|
|
105838
106513
|
},
|
|
106514
|
+
params: {
|
|
106515
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
106516
|
+
type: "object",
|
|
106517
|
+
additionalProperties: {
|
|
106518
|
+
type: "string"
|
|
106519
|
+
},
|
|
106520
|
+
default: {}
|
|
106521
|
+
},
|
|
105839
106522
|
timeout: {
|
|
105840
106523
|
type: "integer",
|
|
105841
106524
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106008,6 +106691,14 @@ var schemas_default = {
|
|
|
106008
106691
|
"trim"
|
|
106009
106692
|
]
|
|
106010
106693
|
},
|
|
106694
|
+
params: {
|
|
106695
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
106696
|
+
type: "object",
|
|
106697
|
+
additionalProperties: {
|
|
106698
|
+
type: "string"
|
|
106699
|
+
},
|
|
106700
|
+
default: {}
|
|
106701
|
+
},
|
|
106011
106702
|
timeout: {
|
|
106012
106703
|
type: "integer",
|
|
106013
106704
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106157,6 +106848,13 @@ var schemas_default = {
|
|
|
106157
106848
|
url: "/search",
|
|
106158
106849
|
origin: "https://www.google.com"
|
|
106159
106850
|
},
|
|
106851
|
+
{
|
|
106852
|
+
url: "/dashboard",
|
|
106853
|
+
origin: "https://my-app.com",
|
|
106854
|
+
params: {
|
|
106855
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
106856
|
+
}
|
|
106857
|
+
},
|
|
106160
106858
|
{
|
|
106161
106859
|
url: "https://www.example.com",
|
|
106162
106860
|
waitUntil: {
|
|
@@ -108422,9 +109120,9 @@ var schemas_default = {
|
|
|
108422
109120
|
anyOf: [
|
|
108423
109121
|
{
|
|
108424
109122
|
title: "Screenshot (simple)",
|
|
108425
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
109123
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108426
109124
|
type: "string",
|
|
108427
|
-
pattern: "([A-Za-z0-9_
|
|
109125
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108428
109126
|
transform: [
|
|
108429
109127
|
"trim"
|
|
108430
109128
|
]
|
|
@@ -108435,9 +109133,9 @@ var schemas_default = {
|
|
|
108435
109133
|
properties: {
|
|
108436
109134
|
path: {
|
|
108437
109135
|
title: "Screenshot (simple)",
|
|
108438
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
109136
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108439
109137
|
type: "string",
|
|
108440
|
-
pattern: "([A-Za-z0-9_
|
|
109138
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108441
109139
|
transform: [
|
|
108442
109140
|
"trim"
|
|
108443
109141
|
]
|
|
@@ -108668,9 +109366,9 @@ var schemas_default = {
|
|
|
108668
109366
|
schemas: {
|
|
108669
109367
|
path: {
|
|
108670
109368
|
title: "Screenshot (simple)",
|
|
108671
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
109369
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108672
109370
|
type: "string",
|
|
108673
|
-
pattern: "([A-Za-z0-9_
|
|
109371
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108674
109372
|
transform: [
|
|
108675
109373
|
"trim"
|
|
108676
109374
|
]
|
|
@@ -108681,9 +109379,9 @@ var schemas_default = {
|
|
|
108681
109379
|
properties: {
|
|
108682
109380
|
path: {
|
|
108683
109381
|
title: "Screenshot (simple)",
|
|
108684
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
109382
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
108685
109383
|
type: "string",
|
|
108686
|
-
pattern: "([A-Za-z0-9_
|
|
109384
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
108687
109385
|
transform: [
|
|
108688
109386
|
"trim"
|
|
108689
109387
|
]
|
|
@@ -109065,6 +109763,12 @@ var schemas_default = {
|
|
|
109065
109763
|
"image.png",
|
|
109066
109764
|
"static/images/image.png",
|
|
109067
109765
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
109766
|
+
"https://example.com/static/images/image.png",
|
|
109767
|
+
{
|
|
109768
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
109769
|
+
maxVariation: 0.05,
|
|
109770
|
+
overwrite: "aboveVariation"
|
|
109771
|
+
},
|
|
109068
109772
|
{
|
|
109069
109773
|
path: "image.png",
|
|
109070
109774
|
directory: "static/images",
|
|
@@ -111888,6 +112592,14 @@ var schemas_default = {
|
|
|
111888
112592
|
"trim"
|
|
111889
112593
|
]
|
|
111890
112594
|
},
|
|
112595
|
+
params: {
|
|
112596
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
112597
|
+
type: "object",
|
|
112598
|
+
additionalProperties: {
|
|
112599
|
+
type: "string"
|
|
112600
|
+
},
|
|
112601
|
+
default: {}
|
|
112602
|
+
},
|
|
111891
112603
|
statusCodes: {
|
|
111892
112604
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
111893
112605
|
anyOf: [
|
|
@@ -111971,6 +112683,14 @@ var schemas_default = {
|
|
|
111971
112683
|
"trim"
|
|
111972
112684
|
]
|
|
111973
112685
|
},
|
|
112686
|
+
params: {
|
|
112687
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
112688
|
+
type: "object",
|
|
112689
|
+
additionalProperties: {
|
|
112690
|
+
type: "string"
|
|
112691
|
+
},
|
|
112692
|
+
default: {}
|
|
112693
|
+
},
|
|
111974
112694
|
statusCodes: {
|
|
111975
112695
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
111976
112696
|
anyOf: [
|
|
@@ -112033,6 +112753,13 @@ var schemas_default = {
|
|
|
112033
112753
|
statusCodes: [
|
|
112034
112754
|
200
|
|
112035
112755
|
]
|
|
112756
|
+
},
|
|
112757
|
+
{
|
|
112758
|
+
url: "/health",
|
|
112759
|
+
origin: "https://my-app.com",
|
|
112760
|
+
params: {
|
|
112761
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
112762
|
+
}
|
|
112036
112763
|
}
|
|
112037
112764
|
]
|
|
112038
112765
|
}
|
|
@@ -113973,6 +114700,14 @@ var schemas_default = {
|
|
|
113973
114700
|
"trim"
|
|
113974
114701
|
]
|
|
113975
114702
|
},
|
|
114703
|
+
params: {
|
|
114704
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
114705
|
+
type: "object",
|
|
114706
|
+
additionalProperties: {
|
|
114707
|
+
type: "string"
|
|
114708
|
+
},
|
|
114709
|
+
default: {}
|
|
114710
|
+
},
|
|
113976
114711
|
timeout: {
|
|
113977
114712
|
type: "integer",
|
|
113978
114713
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114145,6 +114880,14 @@ var schemas_default = {
|
|
|
114145
114880
|
"trim"
|
|
114146
114881
|
]
|
|
114147
114882
|
},
|
|
114883
|
+
params: {
|
|
114884
|
+
description: "Query parameters to append to the resolved URL. Merged on top of `originParams` from config; step keys win on collision. If `url` already contains a colliding query key, the value here replaces it. Values support environment variable substitution via `$VAR` syntax. WARNING: values are embedded in the request URL and appear in test results, logs, and reports.",
|
|
114885
|
+
type: "object",
|
|
114886
|
+
additionalProperties: {
|
|
114887
|
+
type: "string"
|
|
114888
|
+
},
|
|
114889
|
+
default: {}
|
|
114890
|
+
},
|
|
114148
114891
|
timeout: {
|
|
114149
114892
|
type: "integer",
|
|
114150
114893
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114294,6 +115037,13 @@ var schemas_default = {
|
|
|
114294
115037
|
url: "/search",
|
|
114295
115038
|
origin: "https://www.google.com"
|
|
114296
115039
|
},
|
|
115040
|
+
{
|
|
115041
|
+
url: "/dashboard",
|
|
115042
|
+
origin: "https://my-app.com",
|
|
115043
|
+
params: {
|
|
115044
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
115045
|
+
}
|
|
115046
|
+
},
|
|
114297
115047
|
{
|
|
114298
115048
|
url: "https://www.example.com",
|
|
114299
115049
|
waitUntil: {
|
|
@@ -116559,9 +117309,9 @@ var schemas_default = {
|
|
|
116559
117309
|
anyOf: [
|
|
116560
117310
|
{
|
|
116561
117311
|
title: "Screenshot (simple)",
|
|
116562
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
117312
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116563
117313
|
type: "string",
|
|
116564
|
-
pattern: "([A-Za-z0-9_
|
|
117314
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116565
117315
|
transform: [
|
|
116566
117316
|
"trim"
|
|
116567
117317
|
]
|
|
@@ -116572,9 +117322,9 @@ var schemas_default = {
|
|
|
116572
117322
|
properties: {
|
|
116573
117323
|
path: {
|
|
116574
117324
|
title: "Screenshot (simple)",
|
|
116575
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
117325
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116576
117326
|
type: "string",
|
|
116577
|
-
pattern: "([A-Za-z0-9_
|
|
117327
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116578
117328
|
transform: [
|
|
116579
117329
|
"trim"
|
|
116580
117330
|
]
|
|
@@ -116805,9 +117555,9 @@ var schemas_default = {
|
|
|
116805
117555
|
schemas: {
|
|
116806
117556
|
path: {
|
|
116807
117557
|
title: "Screenshot (simple)",
|
|
116808
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
117558
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116809
117559
|
type: "string",
|
|
116810
|
-
pattern: "([A-Za-z0-9_
|
|
117560
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116811
117561
|
transform: [
|
|
116812
117562
|
"trim"
|
|
116813
117563
|
]
|
|
@@ -116818,9 +117568,9 @@ var schemas_default = {
|
|
|
116818
117568
|
properties: {
|
|
116819
117569
|
path: {
|
|
116820
117570
|
title: "Screenshot (simple)",
|
|
116821
|
-
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step.",
|
|
117571
|
+
description: "File path of the PNG file. Accepts absolute paths. If not specified, the file name is the ID of the step. If an `http(s)` URL is supplied, the remote image is downloaded and used as a read-only reference for comparison; the new capture is written to a local run-specific folder instead of being uploaded back to the URL.",
|
|
116822
117572
|
type: "string",
|
|
116823
|
-
pattern: "([A-Za-z0-9_
|
|
117573
|
+
pattern: "^(?:https?:\\/\\/.+\\.(?:png|PNG)(?:\\?.*)?|[A-Za-z]:[\\/\\\\].*\\.(?:png|PNG)|[\\/\\\\]?[A-Za-z0-9_.\\/\\\\-]*\\.(?:png|PNG)|\\$[A-Za-z0-9_]+)$",
|
|
116824
117574
|
transform: [
|
|
116825
117575
|
"trim"
|
|
116826
117576
|
]
|
|
@@ -117202,6 +117952,12 @@ var schemas_default = {
|
|
|
117202
117952
|
"image.png",
|
|
117203
117953
|
"static/images/image.png",
|
|
117204
117954
|
"/User/manny/projects/doc-detective/static/images/image.png",
|
|
117955
|
+
"https://example.com/static/images/image.png",
|
|
117956
|
+
{
|
|
117957
|
+
path: "https://promptless-customer-doc-assets.s3.amazonaws.com/docs-images/request-changes-button-0c851bb3.png",
|
|
117958
|
+
maxVariation: 0.05,
|
|
117959
|
+
overwrite: "aboveVariation"
|
|
117960
|
+
},
|
|
117205
117961
|
{
|
|
117206
117962
|
path: "image.png",
|
|
117207
117963
|
directory: "static/images",
|