doc-detective-common 4.0.2-dev.12 → 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 +672 -0
- package/dist/schemas/schemas.json +672 -0
- 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/step_v3.d.ts +12 -0
- package/dist/types/generated/step_v3.d.ts.map +1 -1
- package/dist/types/generated/test_v3.d.ts +24 -0
- 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: {
|
|
@@ -10250,6 +10327,14 @@ var schemas_default = {
|
|
|
10250
10327
|
"trim"
|
|
10251
10328
|
]
|
|
10252
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
|
+
},
|
|
10253
10338
|
statusCodes: {
|
|
10254
10339
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10255
10340
|
anyOf: [
|
|
@@ -10333,6 +10418,14 @@ var schemas_default = {
|
|
|
10333
10418
|
"trim"
|
|
10334
10419
|
]
|
|
10335
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
|
+
},
|
|
10336
10429
|
statusCodes: {
|
|
10337
10430
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10338
10431
|
anyOf: [
|
|
@@ -10395,6 +10488,13 @@ var schemas_default = {
|
|
|
10395
10488
|
statusCodes: [
|
|
10396
10489
|
200
|
|
10397
10490
|
]
|
|
10491
|
+
},
|
|
10492
|
+
{
|
|
10493
|
+
url: "/health",
|
|
10494
|
+
origin: "https://my-app.com",
|
|
10495
|
+
params: {
|
|
10496
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
10497
|
+
}
|
|
10398
10498
|
}
|
|
10399
10499
|
]
|
|
10400
10500
|
}
|
|
@@ -12335,6 +12435,14 @@ var schemas_default = {
|
|
|
12335
12435
|
"trim"
|
|
12336
12436
|
]
|
|
12337
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
|
+
},
|
|
12338
12446
|
timeout: {
|
|
12339
12447
|
type: "integer",
|
|
12340
12448
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12507,6 +12615,14 @@ var schemas_default = {
|
|
|
12507
12615
|
"trim"
|
|
12508
12616
|
]
|
|
12509
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
|
+
},
|
|
12510
12626
|
timeout: {
|
|
12511
12627
|
type: "integer",
|
|
12512
12628
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12656,6 +12772,13 @@ var schemas_default = {
|
|
|
12656
12772
|
url: "/search",
|
|
12657
12773
|
origin: "https://www.google.com"
|
|
12658
12774
|
},
|
|
12775
|
+
{
|
|
12776
|
+
url: "/dashboard",
|
|
12777
|
+
origin: "https://my-app.com",
|
|
12778
|
+
params: {
|
|
12779
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
12780
|
+
}
|
|
12781
|
+
},
|
|
12659
12782
|
{
|
|
12660
12783
|
url: "https://www.example.com",
|
|
12661
12784
|
waitUntil: {
|
|
@@ -17990,6 +18113,12 @@ var schemas_default = {
|
|
|
17990
18113
|
"html"
|
|
17991
18114
|
]
|
|
17992
18115
|
},
|
|
18116
|
+
{
|
|
18117
|
+
origin: "https://my-app.com",
|
|
18118
|
+
originParams: {
|
|
18119
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
18120
|
+
}
|
|
18121
|
+
},
|
|
17993
18122
|
{
|
|
17994
18123
|
fileTypes: [
|
|
17995
18124
|
{
|
|
@@ -20355,6 +20484,14 @@ var schemas_default = {
|
|
|
20355
20484
|
"trim"
|
|
20356
20485
|
]
|
|
20357
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
|
+
},
|
|
20358
20495
|
timeout: {
|
|
20359
20496
|
type: "integer",
|
|
20360
20497
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20527,6 +20664,14 @@ var schemas_default = {
|
|
|
20527
20664
|
"trim"
|
|
20528
20665
|
]
|
|
20529
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
|
+
},
|
|
20530
20675
|
timeout: {
|
|
20531
20676
|
type: "integer",
|
|
20532
20677
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20676,6 +20821,13 @@ var schemas_default = {
|
|
|
20676
20821
|
url: "/search",
|
|
20677
20822
|
origin: "https://www.google.com"
|
|
20678
20823
|
},
|
|
20824
|
+
{
|
|
20825
|
+
url: "/dashboard",
|
|
20826
|
+
origin: "https://my-app.com",
|
|
20827
|
+
params: {
|
|
20828
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
20829
|
+
}
|
|
20830
|
+
},
|
|
20679
20831
|
{
|
|
20680
20832
|
url: "https://www.example.com",
|
|
20681
20833
|
waitUntil: {
|
|
@@ -22335,6 +22487,14 @@ var schemas_default = {
|
|
|
22335
22487
|
description: "Default protocol and domain to use for relative URLs.",
|
|
22336
22488
|
type: "string"
|
|
22337
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
|
+
},
|
|
22338
22498
|
beforeAny: {
|
|
22339
22499
|
description: "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
|
|
22340
22500
|
anyOf: [
|
|
@@ -23349,6 +23509,14 @@ var schemas_default = {
|
|
|
23349
23509
|
"trim"
|
|
23350
23510
|
]
|
|
23351
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
|
+
},
|
|
23352
23520
|
statusCodes: {
|
|
23353
23521
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23354
23522
|
anyOf: [
|
|
@@ -23432,6 +23600,14 @@ var schemas_default = {
|
|
|
23432
23600
|
"trim"
|
|
23433
23601
|
]
|
|
23434
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
|
+
},
|
|
23435
23611
|
statusCodes: {
|
|
23436
23612
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23437
23613
|
anyOf: [
|
|
@@ -23494,6 +23670,13 @@ var schemas_default = {
|
|
|
23494
23670
|
statusCodes: [
|
|
23495
23671
|
200
|
|
23496
23672
|
]
|
|
23673
|
+
},
|
|
23674
|
+
{
|
|
23675
|
+
url: "/health",
|
|
23676
|
+
origin: "https://my-app.com",
|
|
23677
|
+
params: {
|
|
23678
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
23679
|
+
}
|
|
23497
23680
|
}
|
|
23498
23681
|
]
|
|
23499
23682
|
}
|
|
@@ -25434,6 +25617,14 @@ var schemas_default = {
|
|
|
25434
25617
|
"trim"
|
|
25435
25618
|
]
|
|
25436
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
|
+
},
|
|
25437
25628
|
timeout: {
|
|
25438
25629
|
type: "integer",
|
|
25439
25630
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25606,6 +25797,14 @@ var schemas_default = {
|
|
|
25606
25797
|
"trim"
|
|
25607
25798
|
]
|
|
25608
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
|
+
},
|
|
25609
25808
|
timeout: {
|
|
25610
25809
|
type: "integer",
|
|
25611
25810
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25755,6 +25954,13 @@ var schemas_default = {
|
|
|
25755
25954
|
url: "/search",
|
|
25756
25955
|
origin: "https://www.google.com"
|
|
25757
25956
|
},
|
|
25957
|
+
{
|
|
25958
|
+
url: "/dashboard",
|
|
25959
|
+
origin: "https://my-app.com",
|
|
25960
|
+
params: {
|
|
25961
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
25962
|
+
}
|
|
25963
|
+
},
|
|
25758
25964
|
{
|
|
25759
25965
|
url: "https://www.example.com",
|
|
25760
25966
|
waitUntil: {
|
|
@@ -32018,6 +32224,14 @@ var schemas_default = {
|
|
|
32018
32224
|
"trim"
|
|
32019
32225
|
]
|
|
32020
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
|
+
},
|
|
32021
32235
|
statusCodes: {
|
|
32022
32236
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32023
32237
|
anyOf: [
|
|
@@ -32101,6 +32315,14 @@ var schemas_default = {
|
|
|
32101
32315
|
"trim"
|
|
32102
32316
|
]
|
|
32103
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
|
+
},
|
|
32104
32326
|
statusCodes: {
|
|
32105
32327
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32106
32328
|
anyOf: [
|
|
@@ -32163,6 +32385,13 @@ var schemas_default = {
|
|
|
32163
32385
|
statusCodes: [
|
|
32164
32386
|
200
|
|
32165
32387
|
]
|
|
32388
|
+
},
|
|
32389
|
+
{
|
|
32390
|
+
url: "/health",
|
|
32391
|
+
origin: "https://my-app.com",
|
|
32392
|
+
params: {
|
|
32393
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
32394
|
+
}
|
|
32166
32395
|
}
|
|
32167
32396
|
]
|
|
32168
32397
|
}
|
|
@@ -34103,6 +34332,14 @@ var schemas_default = {
|
|
|
34103
34332
|
"trim"
|
|
34104
34333
|
]
|
|
34105
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
|
+
},
|
|
34106
34343
|
timeout: {
|
|
34107
34344
|
type: "integer",
|
|
34108
34345
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34275,6 +34512,14 @@ var schemas_default = {
|
|
|
34275
34512
|
"trim"
|
|
34276
34513
|
]
|
|
34277
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
|
+
},
|
|
34278
34523
|
timeout: {
|
|
34279
34524
|
type: "integer",
|
|
34280
34525
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34424,6 +34669,13 @@ var schemas_default = {
|
|
|
34424
34669
|
url: "/search",
|
|
34425
34670
|
origin: "https://www.google.com"
|
|
34426
34671
|
},
|
|
34672
|
+
{
|
|
34673
|
+
url: "/dashboard",
|
|
34674
|
+
origin: "https://my-app.com",
|
|
34675
|
+
params: {
|
|
34676
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
34677
|
+
}
|
|
34678
|
+
},
|
|
34427
34679
|
{
|
|
34428
34680
|
url: "https://www.example.com",
|
|
34429
34681
|
waitUntil: {
|
|
@@ -39758,6 +40010,12 @@ var schemas_default = {
|
|
|
39758
40010
|
"html"
|
|
39759
40011
|
]
|
|
39760
40012
|
},
|
|
40013
|
+
{
|
|
40014
|
+
origin: "https://my-app.com",
|
|
40015
|
+
originParams: {
|
|
40016
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
40017
|
+
}
|
|
40018
|
+
},
|
|
39761
40019
|
{
|
|
39762
40020
|
fileTypes: [
|
|
39763
40021
|
{
|
|
@@ -41381,6 +41639,14 @@ var schemas_default = {
|
|
|
41381
41639
|
"trim"
|
|
41382
41640
|
]
|
|
41383
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
|
+
},
|
|
41384
41650
|
statusCodes: {
|
|
41385
41651
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41386
41652
|
anyOf: [
|
|
@@ -41464,6 +41730,14 @@ var schemas_default = {
|
|
|
41464
41730
|
"trim"
|
|
41465
41731
|
]
|
|
41466
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
|
+
},
|
|
41467
41741
|
statusCodes: {
|
|
41468
41742
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41469
41743
|
anyOf: [
|
|
@@ -41526,6 +41800,13 @@ var schemas_default = {
|
|
|
41526
41800
|
statusCodes: [
|
|
41527
41801
|
200
|
|
41528
41802
|
]
|
|
41803
|
+
},
|
|
41804
|
+
{
|
|
41805
|
+
url: "/health",
|
|
41806
|
+
origin: "https://my-app.com",
|
|
41807
|
+
params: {
|
|
41808
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
41809
|
+
}
|
|
41529
41810
|
}
|
|
41530
41811
|
]
|
|
41531
41812
|
}
|
|
@@ -43466,6 +43747,14 @@ var schemas_default = {
|
|
|
43466
43747
|
"trim"
|
|
43467
43748
|
]
|
|
43468
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
|
+
},
|
|
43469
43758
|
timeout: {
|
|
43470
43759
|
type: "integer",
|
|
43471
43760
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43638,6 +43927,14 @@ var schemas_default = {
|
|
|
43638
43927
|
"trim"
|
|
43639
43928
|
]
|
|
43640
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
|
+
},
|
|
43641
43938
|
timeout: {
|
|
43642
43939
|
type: "integer",
|
|
43643
43940
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43787,6 +44084,13 @@ var schemas_default = {
|
|
|
43787
44084
|
url: "/search",
|
|
43788
44085
|
origin: "https://www.google.com"
|
|
43789
44086
|
},
|
|
44087
|
+
{
|
|
44088
|
+
url: "/dashboard",
|
|
44089
|
+
origin: "https://my-app.com",
|
|
44090
|
+
params: {
|
|
44091
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
44092
|
+
}
|
|
44093
|
+
},
|
|
43790
44094
|
{
|
|
43791
44095
|
url: "https://www.example.com",
|
|
43792
44096
|
waitUntil: {
|
|
@@ -49524,6 +49828,14 @@ var schemas_default = {
|
|
|
49524
49828
|
"trim"
|
|
49525
49829
|
]
|
|
49526
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
|
+
},
|
|
49527
49839
|
statusCodes: {
|
|
49528
49840
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49529
49841
|
anyOf: [
|
|
@@ -49607,6 +49919,14 @@ var schemas_default = {
|
|
|
49607
49919
|
"trim"
|
|
49608
49920
|
]
|
|
49609
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
|
+
},
|
|
49610
49930
|
statusCodes: {
|
|
49611
49931
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49612
49932
|
anyOf: [
|
|
@@ -49669,6 +49989,13 @@ var schemas_default = {
|
|
|
49669
49989
|
statusCodes: [
|
|
49670
49990
|
200
|
|
49671
49991
|
]
|
|
49992
|
+
},
|
|
49993
|
+
{
|
|
49994
|
+
url: "/health",
|
|
49995
|
+
origin: "https://my-app.com",
|
|
49996
|
+
params: {
|
|
49997
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
49998
|
+
}
|
|
49672
49999
|
}
|
|
49673
50000
|
]
|
|
49674
50001
|
}
|
|
@@ -51609,6 +51936,14 @@ var schemas_default = {
|
|
|
51609
51936
|
"trim"
|
|
51610
51937
|
]
|
|
51611
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
|
+
},
|
|
51612
51947
|
timeout: {
|
|
51613
51948
|
type: "integer",
|
|
51614
51949
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51781,6 +52116,14 @@ var schemas_default = {
|
|
|
51781
52116
|
"trim"
|
|
51782
52117
|
]
|
|
51783
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
|
+
},
|
|
51784
52127
|
timeout: {
|
|
51785
52128
|
type: "integer",
|
|
51786
52129
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51930,6 +52273,13 @@ var schemas_default = {
|
|
|
51930
52273
|
url: "/search",
|
|
51931
52274
|
origin: "https://www.google.com"
|
|
51932
52275
|
},
|
|
52276
|
+
{
|
|
52277
|
+
url: "/dashboard",
|
|
52278
|
+
origin: "https://my-app.com",
|
|
52279
|
+
params: {
|
|
52280
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
52281
|
+
}
|
|
52282
|
+
},
|
|
51933
52283
|
{
|
|
51934
52284
|
url: "https://www.example.com",
|
|
51935
52285
|
waitUntil: {
|
|
@@ -59377,6 +59727,14 @@ var schemas_default = {
|
|
|
59377
59727
|
"trim"
|
|
59378
59728
|
]
|
|
59379
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
|
+
},
|
|
59380
59738
|
statusCodes: {
|
|
59381
59739
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59382
59740
|
anyOf: [
|
|
@@ -59460,6 +59818,14 @@ var schemas_default = {
|
|
|
59460
59818
|
"trim"
|
|
59461
59819
|
]
|
|
59462
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
|
+
},
|
|
59463
59829
|
statusCodes: {
|
|
59464
59830
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59465
59831
|
anyOf: [
|
|
@@ -59522,6 +59888,13 @@ var schemas_default = {
|
|
|
59522
59888
|
statusCodes: [
|
|
59523
59889
|
200
|
|
59524
59890
|
]
|
|
59891
|
+
},
|
|
59892
|
+
{
|
|
59893
|
+
url: "/health",
|
|
59894
|
+
origin: "https://my-app.com",
|
|
59895
|
+
params: {
|
|
59896
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
59897
|
+
}
|
|
59525
59898
|
}
|
|
59526
59899
|
]
|
|
59527
59900
|
}
|
|
@@ -61462,6 +61835,14 @@ var schemas_default = {
|
|
|
61462
61835
|
"trim"
|
|
61463
61836
|
]
|
|
61464
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
|
+
},
|
|
61465
61846
|
timeout: {
|
|
61466
61847
|
type: "integer",
|
|
61467
61848
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61634,6 +62015,14 @@ var schemas_default = {
|
|
|
61634
62015
|
"trim"
|
|
61635
62016
|
]
|
|
61636
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
|
+
},
|
|
61637
62026
|
timeout: {
|
|
61638
62027
|
type: "integer",
|
|
61639
62028
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61783,6 +62172,13 @@ var schemas_default = {
|
|
|
61783
62172
|
url: "/search",
|
|
61784
62173
|
origin: "https://www.google.com"
|
|
61785
62174
|
},
|
|
62175
|
+
{
|
|
62176
|
+
url: "/dashboard",
|
|
62177
|
+
origin: "https://my-app.com",
|
|
62178
|
+
params: {
|
|
62179
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
62180
|
+
}
|
|
62181
|
+
},
|
|
61786
62182
|
{
|
|
61787
62183
|
url: "https://www.example.com",
|
|
61788
62184
|
waitUntil: {
|
|
@@ -67520,6 +67916,14 @@ var schemas_default = {
|
|
|
67520
67916
|
"trim"
|
|
67521
67917
|
]
|
|
67522
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
|
+
},
|
|
67523
67927
|
statusCodes: {
|
|
67524
67928
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67525
67929
|
anyOf: [
|
|
@@ -67603,6 +68007,14 @@ var schemas_default = {
|
|
|
67603
68007
|
"trim"
|
|
67604
68008
|
]
|
|
67605
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
|
+
},
|
|
67606
68018
|
statusCodes: {
|
|
67607
68019
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67608
68020
|
anyOf: [
|
|
@@ -67665,6 +68077,13 @@ var schemas_default = {
|
|
|
67665
68077
|
statusCodes: [
|
|
67666
68078
|
200
|
|
67667
68079
|
]
|
|
68080
|
+
},
|
|
68081
|
+
{
|
|
68082
|
+
url: "/health",
|
|
68083
|
+
origin: "https://my-app.com",
|
|
68084
|
+
params: {
|
|
68085
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
68086
|
+
}
|
|
67668
68087
|
}
|
|
67669
68088
|
]
|
|
67670
68089
|
}
|
|
@@ -69605,6 +70024,14 @@ var schemas_default = {
|
|
|
69605
70024
|
"trim"
|
|
69606
70025
|
]
|
|
69607
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
|
+
},
|
|
69608
70035
|
timeout: {
|
|
69609
70036
|
type: "integer",
|
|
69610
70037
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69777,6 +70204,14 @@ var schemas_default = {
|
|
|
69777
70204
|
"trim"
|
|
69778
70205
|
]
|
|
69779
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
|
+
},
|
|
69780
70215
|
timeout: {
|
|
69781
70216
|
type: "integer",
|
|
69782
70217
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69926,6 +70361,13 @@ var schemas_default = {
|
|
|
69926
70361
|
url: "/search",
|
|
69927
70362
|
origin: "https://www.google.com"
|
|
69928
70363
|
},
|
|
70364
|
+
{
|
|
70365
|
+
url: "/dashboard",
|
|
70366
|
+
origin: "https://my-app.com",
|
|
70367
|
+
params: {
|
|
70368
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
70369
|
+
}
|
|
70370
|
+
},
|
|
69929
70371
|
{
|
|
69930
70372
|
url: "https://www.example.com",
|
|
69931
70373
|
waitUntil: {
|
|
@@ -78761,6 +79203,14 @@ var schemas_default = {
|
|
|
78761
79203
|
"trim"
|
|
78762
79204
|
]
|
|
78763
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
|
+
},
|
|
78764
79214
|
statusCodes: {
|
|
78765
79215
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78766
79216
|
anyOf: [
|
|
@@ -78844,6 +79294,14 @@ var schemas_default = {
|
|
|
78844
79294
|
"trim"
|
|
78845
79295
|
]
|
|
78846
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
|
+
},
|
|
78847
79305
|
statusCodes: {
|
|
78848
79306
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78849
79307
|
anyOf: [
|
|
@@ -78906,6 +79364,13 @@ var schemas_default = {
|
|
|
78906
79364
|
statusCodes: [
|
|
78907
79365
|
200
|
|
78908
79366
|
]
|
|
79367
|
+
},
|
|
79368
|
+
{
|
|
79369
|
+
url: "/health",
|
|
79370
|
+
origin: "https://my-app.com",
|
|
79371
|
+
params: {
|
|
79372
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
79373
|
+
}
|
|
78909
79374
|
}
|
|
78910
79375
|
]
|
|
78911
79376
|
}
|
|
@@ -80846,6 +81311,14 @@ var schemas_default = {
|
|
|
80846
81311
|
"trim"
|
|
80847
81312
|
]
|
|
80848
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
|
+
},
|
|
80849
81322
|
timeout: {
|
|
80850
81323
|
type: "integer",
|
|
80851
81324
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -81018,6 +81491,14 @@ var schemas_default = {
|
|
|
81018
81491
|
"trim"
|
|
81019
81492
|
]
|
|
81020
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
|
+
},
|
|
81021
81502
|
timeout: {
|
|
81022
81503
|
type: "integer",
|
|
81023
81504
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -81167,6 +81648,13 @@ var schemas_default = {
|
|
|
81167
81648
|
url: "/search",
|
|
81168
81649
|
origin: "https://www.google.com"
|
|
81169
81650
|
},
|
|
81651
|
+
{
|
|
81652
|
+
url: "/dashboard",
|
|
81653
|
+
origin: "https://my-app.com",
|
|
81654
|
+
params: {
|
|
81655
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
81656
|
+
}
|
|
81657
|
+
},
|
|
81170
81658
|
{
|
|
81171
81659
|
url: "https://www.example.com",
|
|
81172
81660
|
waitUntil: {
|
|
@@ -86904,6 +87392,14 @@ var schemas_default = {
|
|
|
86904
87392
|
"trim"
|
|
86905
87393
|
]
|
|
86906
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
|
+
},
|
|
86907
87403
|
statusCodes: {
|
|
86908
87404
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86909
87405
|
anyOf: [
|
|
@@ -86987,6 +87483,14 @@ var schemas_default = {
|
|
|
86987
87483
|
"trim"
|
|
86988
87484
|
]
|
|
86989
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
|
+
},
|
|
86990
87494
|
statusCodes: {
|
|
86991
87495
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86992
87496
|
anyOf: [
|
|
@@ -87049,6 +87553,13 @@ var schemas_default = {
|
|
|
87049
87553
|
statusCodes: [
|
|
87050
87554
|
200
|
|
87051
87555
|
]
|
|
87556
|
+
},
|
|
87557
|
+
{
|
|
87558
|
+
url: "/health",
|
|
87559
|
+
origin: "https://my-app.com",
|
|
87560
|
+
params: {
|
|
87561
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
87562
|
+
}
|
|
87052
87563
|
}
|
|
87053
87564
|
]
|
|
87054
87565
|
}
|
|
@@ -88989,6 +89500,14 @@ var schemas_default = {
|
|
|
88989
89500
|
"trim"
|
|
88990
89501
|
]
|
|
88991
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
|
+
},
|
|
88992
89511
|
timeout: {
|
|
88993
89512
|
type: "integer",
|
|
88994
89513
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89161,6 +89680,14 @@ var schemas_default = {
|
|
|
89161
89680
|
"trim"
|
|
89162
89681
|
]
|
|
89163
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
|
+
},
|
|
89164
89691
|
timeout: {
|
|
89165
89692
|
type: "integer",
|
|
89166
89693
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89310,6 +89837,13 @@ var schemas_default = {
|
|
|
89310
89837
|
url: "/search",
|
|
89311
89838
|
origin: "https://www.google.com"
|
|
89312
89839
|
},
|
|
89840
|
+
{
|
|
89841
|
+
url: "/dashboard",
|
|
89842
|
+
origin: "https://my-app.com",
|
|
89843
|
+
params: {
|
|
89844
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
89845
|
+
}
|
|
89846
|
+
},
|
|
89313
89847
|
{
|
|
89314
89848
|
url: "https://www.example.com",
|
|
89315
89849
|
waitUntil: {
|
|
@@ -95327,6 +95861,14 @@ var schemas_default = {
|
|
|
95327
95861
|
"trim"
|
|
95328
95862
|
]
|
|
95329
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
|
+
},
|
|
95330
95872
|
statusCodes: {
|
|
95331
95873
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95332
95874
|
anyOf: [
|
|
@@ -95410,6 +95952,14 @@ var schemas_default = {
|
|
|
95410
95952
|
"trim"
|
|
95411
95953
|
]
|
|
95412
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
|
+
},
|
|
95413
95963
|
statusCodes: {
|
|
95414
95964
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95415
95965
|
anyOf: [
|
|
@@ -95472,6 +96022,13 @@ var schemas_default = {
|
|
|
95472
96022
|
statusCodes: [
|
|
95473
96023
|
200
|
|
95474
96024
|
]
|
|
96025
|
+
},
|
|
96026
|
+
{
|
|
96027
|
+
url: "/health",
|
|
96028
|
+
origin: "https://my-app.com",
|
|
96029
|
+
params: {
|
|
96030
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
96031
|
+
}
|
|
95475
96032
|
}
|
|
95476
96033
|
]
|
|
95477
96034
|
}
|
|
@@ -97412,6 +97969,14 @@ var schemas_default = {
|
|
|
97412
97969
|
"trim"
|
|
97413
97970
|
]
|
|
97414
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
|
+
},
|
|
97415
97980
|
timeout: {
|
|
97416
97981
|
type: "integer",
|
|
97417
97982
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97584,6 +98149,14 @@ var schemas_default = {
|
|
|
97584
98149
|
"trim"
|
|
97585
98150
|
]
|
|
97586
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
|
+
},
|
|
97587
98160
|
timeout: {
|
|
97588
98161
|
type: "integer",
|
|
97589
98162
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97733,6 +98306,13 @@ var schemas_default = {
|
|
|
97733
98306
|
url: "/search",
|
|
97734
98307
|
origin: "https://www.google.com"
|
|
97735
98308
|
},
|
|
98309
|
+
{
|
|
98310
|
+
url: "/dashboard",
|
|
98311
|
+
origin: "https://my-app.com",
|
|
98312
|
+
params: {
|
|
98313
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
98314
|
+
}
|
|
98315
|
+
},
|
|
97736
98316
|
{
|
|
97737
98317
|
url: "https://www.example.com",
|
|
97738
98318
|
waitUntil: {
|
|
@@ -103823,6 +104403,14 @@ var schemas_default = {
|
|
|
103823
104403
|
"trim"
|
|
103824
104404
|
]
|
|
103825
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
|
+
},
|
|
103826
104414
|
statusCodes: {
|
|
103827
104415
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103828
104416
|
anyOf: [
|
|
@@ -103906,6 +104494,14 @@ var schemas_default = {
|
|
|
103906
104494
|
"trim"
|
|
103907
104495
|
]
|
|
103908
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
|
+
},
|
|
103909
104505
|
statusCodes: {
|
|
103910
104506
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103911
104507
|
anyOf: [
|
|
@@ -103968,6 +104564,13 @@ var schemas_default = {
|
|
|
103968
104564
|
statusCodes: [
|
|
103969
104565
|
200
|
|
103970
104566
|
]
|
|
104567
|
+
},
|
|
104568
|
+
{
|
|
104569
|
+
url: "/health",
|
|
104570
|
+
origin: "https://my-app.com",
|
|
104571
|
+
params: {
|
|
104572
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
104573
|
+
}
|
|
103971
104574
|
}
|
|
103972
104575
|
]
|
|
103973
104576
|
}
|
|
@@ -105908,6 +106511,14 @@ var schemas_default = {
|
|
|
105908
106511
|
"trim"
|
|
105909
106512
|
]
|
|
105910
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
|
+
},
|
|
105911
106522
|
timeout: {
|
|
105912
106523
|
type: "integer",
|
|
105913
106524
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106080,6 +106691,14 @@ var schemas_default = {
|
|
|
106080
106691
|
"trim"
|
|
106081
106692
|
]
|
|
106082
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
|
+
},
|
|
106083
106702
|
timeout: {
|
|
106084
106703
|
type: "integer",
|
|
106085
106704
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106229,6 +106848,13 @@ var schemas_default = {
|
|
|
106229
106848
|
url: "/search",
|
|
106230
106849
|
origin: "https://www.google.com"
|
|
106231
106850
|
},
|
|
106851
|
+
{
|
|
106852
|
+
url: "/dashboard",
|
|
106853
|
+
origin: "https://my-app.com",
|
|
106854
|
+
params: {
|
|
106855
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
106856
|
+
}
|
|
106857
|
+
},
|
|
106232
106858
|
{
|
|
106233
106859
|
url: "https://www.example.com",
|
|
106234
106860
|
waitUntil: {
|
|
@@ -111966,6 +112592,14 @@ var schemas_default = {
|
|
|
111966
112592
|
"trim"
|
|
111967
112593
|
]
|
|
111968
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
|
+
},
|
|
111969
112603
|
statusCodes: {
|
|
111970
112604
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
111971
112605
|
anyOf: [
|
|
@@ -112049,6 +112683,14 @@ var schemas_default = {
|
|
|
112049
112683
|
"trim"
|
|
112050
112684
|
]
|
|
112051
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
|
+
},
|
|
112052
112694
|
statusCodes: {
|
|
112053
112695
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
112054
112696
|
anyOf: [
|
|
@@ -112111,6 +112753,13 @@ var schemas_default = {
|
|
|
112111
112753
|
statusCodes: [
|
|
112112
112754
|
200
|
|
112113
112755
|
]
|
|
112756
|
+
},
|
|
112757
|
+
{
|
|
112758
|
+
url: "/health",
|
|
112759
|
+
origin: "https://my-app.com",
|
|
112760
|
+
params: {
|
|
112761
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
112762
|
+
}
|
|
112114
112763
|
}
|
|
112115
112764
|
]
|
|
112116
112765
|
}
|
|
@@ -114051,6 +114700,14 @@ var schemas_default = {
|
|
|
114051
114700
|
"trim"
|
|
114052
114701
|
]
|
|
114053
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
|
+
},
|
|
114054
114711
|
timeout: {
|
|
114055
114712
|
type: "integer",
|
|
114056
114713
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114223,6 +114880,14 @@ var schemas_default = {
|
|
|
114223
114880
|
"trim"
|
|
114224
114881
|
]
|
|
114225
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
|
+
},
|
|
114226
114891
|
timeout: {
|
|
114227
114892
|
type: "integer",
|
|
114228
114893
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114372,6 +115037,13 @@ var schemas_default = {
|
|
|
114372
115037
|
url: "/search",
|
|
114373
115038
|
origin: "https://www.google.com"
|
|
114374
115039
|
},
|
|
115040
|
+
{
|
|
115041
|
+
url: "/dashboard",
|
|
115042
|
+
origin: "https://my-app.com",
|
|
115043
|
+
params: {
|
|
115044
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
115045
|
+
}
|
|
115046
|
+
},
|
|
114375
115047
|
{
|
|
114376
115048
|
url: "https://www.example.com",
|
|
114377
115049
|
waitUntil: {
|