doc-detective 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/common/src/schemas/schemas.json +672 -0
- package/dist/common/src/types/generated/checkLink_v3.d.ts +6 -0
- package/dist/common/src/types/generated/checkLink_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/config_v3.d.ts +6 -0
- package/dist/common/src/types/generated/config_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/goTo_v3.d.ts +6 -0
- package/dist/common/src/types/generated/goTo_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/resolvedTests_v3.d.ts +6 -0
- package/dist/common/src/types/generated/resolvedTests_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/step_v3.d.ts +12 -0
- package/dist/common/src/types/generated/step_v3.d.ts.map +1 -1
- package/dist/common/src/types/generated/test_v3.d.ts +24 -0
- package/dist/common/src/types/generated/test_v3.d.ts.map +1 -1
- package/dist/core/tests/checkLink.d.ts.map +1 -1
- package/dist/core/tests/checkLink.js +17 -2
- package/dist/core/tests/checkLink.js.map +1 -1
- package/dist/core/tests/goTo.d.ts.map +1 -1
- package/dist/core/tests/goTo.js +17 -2
- package/dist/core/tests/goTo.js.map +1 -1
- package/dist/core/utils.d.ts +2 -1
- package/dist/core/utils.d.ts.map +1 -1
- package/dist/core/utils.js +42 -1
- package/dist/core/utils.js.map +1 -1
- package/dist/index.cjs +714 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -83,6 +83,14 @@ var schemas_default = {
|
|
|
83
83
|
"trim"
|
|
84
84
|
]
|
|
85
85
|
},
|
|
86
|
+
params: {
|
|
87
|
+
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.",
|
|
88
|
+
type: "object",
|
|
89
|
+
additionalProperties: {
|
|
90
|
+
type: "string"
|
|
91
|
+
},
|
|
92
|
+
default: {}
|
|
93
|
+
},
|
|
86
94
|
statusCodes: {
|
|
87
95
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
88
96
|
anyOf: [
|
|
@@ -166,6 +174,14 @@ var schemas_default = {
|
|
|
166
174
|
"trim"
|
|
167
175
|
]
|
|
168
176
|
},
|
|
177
|
+
params: {
|
|
178
|
+
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.",
|
|
179
|
+
type: "object",
|
|
180
|
+
additionalProperties: {
|
|
181
|
+
type: "string"
|
|
182
|
+
},
|
|
183
|
+
default: {}
|
|
184
|
+
},
|
|
169
185
|
statusCodes: {
|
|
170
186
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
171
187
|
anyOf: [
|
|
@@ -228,6 +244,13 @@ var schemas_default = {
|
|
|
228
244
|
statusCodes: [
|
|
229
245
|
200
|
|
230
246
|
]
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
url: "/health",
|
|
250
|
+
origin: "https://my-app.com",
|
|
251
|
+
params: {
|
|
252
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
253
|
+
}
|
|
231
254
|
}
|
|
232
255
|
]
|
|
233
256
|
},
|
|
@@ -573,6 +596,14 @@ var schemas_default = {
|
|
|
573
596
|
description: "Default protocol and domain to use for relative URLs.",
|
|
574
597
|
type: "string"
|
|
575
598
|
},
|
|
599
|
+
originParams: {
|
|
600
|
+
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.",
|
|
601
|
+
type: "object",
|
|
602
|
+
additionalProperties: {
|
|
603
|
+
type: "string"
|
|
604
|
+
},
|
|
605
|
+
default: {}
|
|
606
|
+
},
|
|
576
607
|
beforeAny: {
|
|
577
608
|
description: "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
|
|
578
609
|
anyOf: [
|
|
@@ -1587,6 +1618,14 @@ var schemas_default = {
|
|
|
1587
1618
|
"trim"
|
|
1588
1619
|
]
|
|
1589
1620
|
},
|
|
1621
|
+
params: {
|
|
1622
|
+
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.",
|
|
1623
|
+
type: "object",
|
|
1624
|
+
additionalProperties: {
|
|
1625
|
+
type: "string"
|
|
1626
|
+
},
|
|
1627
|
+
default: {}
|
|
1628
|
+
},
|
|
1590
1629
|
statusCodes: {
|
|
1591
1630
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
1592
1631
|
anyOf: [
|
|
@@ -1670,6 +1709,14 @@ var schemas_default = {
|
|
|
1670
1709
|
"trim"
|
|
1671
1710
|
]
|
|
1672
1711
|
},
|
|
1712
|
+
params: {
|
|
1713
|
+
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.",
|
|
1714
|
+
type: "object",
|
|
1715
|
+
additionalProperties: {
|
|
1716
|
+
type: "string"
|
|
1717
|
+
},
|
|
1718
|
+
default: {}
|
|
1719
|
+
},
|
|
1673
1720
|
statusCodes: {
|
|
1674
1721
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
1675
1722
|
anyOf: [
|
|
@@ -1732,6 +1779,13 @@ var schemas_default = {
|
|
|
1732
1779
|
statusCodes: [
|
|
1733
1780
|
200
|
|
1734
1781
|
]
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
url: "/health",
|
|
1785
|
+
origin: "https://my-app.com",
|
|
1786
|
+
params: {
|
|
1787
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
1788
|
+
}
|
|
1735
1789
|
}
|
|
1736
1790
|
]
|
|
1737
1791
|
}
|
|
@@ -3672,6 +3726,14 @@ var schemas_default = {
|
|
|
3672
3726
|
"trim"
|
|
3673
3727
|
]
|
|
3674
3728
|
},
|
|
3729
|
+
params: {
|
|
3730
|
+
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.",
|
|
3731
|
+
type: "object",
|
|
3732
|
+
additionalProperties: {
|
|
3733
|
+
type: "string"
|
|
3734
|
+
},
|
|
3735
|
+
default: {}
|
|
3736
|
+
},
|
|
3675
3737
|
timeout: {
|
|
3676
3738
|
type: "integer",
|
|
3677
3739
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -3844,6 +3906,14 @@ var schemas_default = {
|
|
|
3844
3906
|
"trim"
|
|
3845
3907
|
]
|
|
3846
3908
|
},
|
|
3909
|
+
params: {
|
|
3910
|
+
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.",
|
|
3911
|
+
type: "object",
|
|
3912
|
+
additionalProperties: {
|
|
3913
|
+
type: "string"
|
|
3914
|
+
},
|
|
3915
|
+
default: {}
|
|
3916
|
+
},
|
|
3847
3917
|
timeout: {
|
|
3848
3918
|
type: "integer",
|
|
3849
3919
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -3993,6 +4063,13 @@ var schemas_default = {
|
|
|
3993
4063
|
url: "/search",
|
|
3994
4064
|
origin: "https://www.google.com"
|
|
3995
4065
|
},
|
|
4066
|
+
{
|
|
4067
|
+
url: "/dashboard",
|
|
4068
|
+
origin: "https://my-app.com",
|
|
4069
|
+
params: {
|
|
4070
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
4071
|
+
}
|
|
4072
|
+
},
|
|
3996
4073
|
{
|
|
3997
4074
|
url: "https://www.example.com",
|
|
3998
4075
|
waitUntil: {
|
|
@@ -10256,6 +10333,14 @@ var schemas_default = {
|
|
|
10256
10333
|
"trim"
|
|
10257
10334
|
]
|
|
10258
10335
|
},
|
|
10336
|
+
params: {
|
|
10337
|
+
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.",
|
|
10338
|
+
type: "object",
|
|
10339
|
+
additionalProperties: {
|
|
10340
|
+
type: "string"
|
|
10341
|
+
},
|
|
10342
|
+
default: {}
|
|
10343
|
+
},
|
|
10259
10344
|
statusCodes: {
|
|
10260
10345
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10261
10346
|
anyOf: [
|
|
@@ -10339,6 +10424,14 @@ var schemas_default = {
|
|
|
10339
10424
|
"trim"
|
|
10340
10425
|
]
|
|
10341
10426
|
},
|
|
10427
|
+
params: {
|
|
10428
|
+
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.",
|
|
10429
|
+
type: "object",
|
|
10430
|
+
additionalProperties: {
|
|
10431
|
+
type: "string"
|
|
10432
|
+
},
|
|
10433
|
+
default: {}
|
|
10434
|
+
},
|
|
10342
10435
|
statusCodes: {
|
|
10343
10436
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
10344
10437
|
anyOf: [
|
|
@@ -10401,6 +10494,13 @@ var schemas_default = {
|
|
|
10401
10494
|
statusCodes: [
|
|
10402
10495
|
200
|
|
10403
10496
|
]
|
|
10497
|
+
},
|
|
10498
|
+
{
|
|
10499
|
+
url: "/health",
|
|
10500
|
+
origin: "https://my-app.com",
|
|
10501
|
+
params: {
|
|
10502
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
10503
|
+
}
|
|
10404
10504
|
}
|
|
10405
10505
|
]
|
|
10406
10506
|
}
|
|
@@ -12341,6 +12441,14 @@ var schemas_default = {
|
|
|
12341
12441
|
"trim"
|
|
12342
12442
|
]
|
|
12343
12443
|
},
|
|
12444
|
+
params: {
|
|
12445
|
+
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.",
|
|
12446
|
+
type: "object",
|
|
12447
|
+
additionalProperties: {
|
|
12448
|
+
type: "string"
|
|
12449
|
+
},
|
|
12450
|
+
default: {}
|
|
12451
|
+
},
|
|
12344
12452
|
timeout: {
|
|
12345
12453
|
type: "integer",
|
|
12346
12454
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12513,6 +12621,14 @@ var schemas_default = {
|
|
|
12513
12621
|
"trim"
|
|
12514
12622
|
]
|
|
12515
12623
|
},
|
|
12624
|
+
params: {
|
|
12625
|
+
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.",
|
|
12626
|
+
type: "object",
|
|
12627
|
+
additionalProperties: {
|
|
12628
|
+
type: "string"
|
|
12629
|
+
},
|
|
12630
|
+
default: {}
|
|
12631
|
+
},
|
|
12516
12632
|
timeout: {
|
|
12517
12633
|
type: "integer",
|
|
12518
12634
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -12662,6 +12778,13 @@ var schemas_default = {
|
|
|
12662
12778
|
url: "/search",
|
|
12663
12779
|
origin: "https://www.google.com"
|
|
12664
12780
|
},
|
|
12781
|
+
{
|
|
12782
|
+
url: "/dashboard",
|
|
12783
|
+
origin: "https://my-app.com",
|
|
12784
|
+
params: {
|
|
12785
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
12786
|
+
}
|
|
12787
|
+
},
|
|
12665
12788
|
{
|
|
12666
12789
|
url: "https://www.example.com",
|
|
12667
12790
|
waitUntil: {
|
|
@@ -17996,6 +18119,12 @@ var schemas_default = {
|
|
|
17996
18119
|
"html"
|
|
17997
18120
|
]
|
|
17998
18121
|
},
|
|
18122
|
+
{
|
|
18123
|
+
origin: "https://my-app.com",
|
|
18124
|
+
originParams: {
|
|
18125
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
18126
|
+
}
|
|
18127
|
+
},
|
|
17999
18128
|
{
|
|
18000
18129
|
fileTypes: [
|
|
18001
18130
|
{
|
|
@@ -20361,6 +20490,14 @@ var schemas_default = {
|
|
|
20361
20490
|
"trim"
|
|
20362
20491
|
]
|
|
20363
20492
|
},
|
|
20493
|
+
params: {
|
|
20494
|
+
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.",
|
|
20495
|
+
type: "object",
|
|
20496
|
+
additionalProperties: {
|
|
20497
|
+
type: "string"
|
|
20498
|
+
},
|
|
20499
|
+
default: {}
|
|
20500
|
+
},
|
|
20364
20501
|
timeout: {
|
|
20365
20502
|
type: "integer",
|
|
20366
20503
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20533,6 +20670,14 @@ var schemas_default = {
|
|
|
20533
20670
|
"trim"
|
|
20534
20671
|
]
|
|
20535
20672
|
},
|
|
20673
|
+
params: {
|
|
20674
|
+
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.",
|
|
20675
|
+
type: "object",
|
|
20676
|
+
additionalProperties: {
|
|
20677
|
+
type: "string"
|
|
20678
|
+
},
|
|
20679
|
+
default: {}
|
|
20680
|
+
},
|
|
20536
20681
|
timeout: {
|
|
20537
20682
|
type: "integer",
|
|
20538
20683
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -20682,6 +20827,13 @@ var schemas_default = {
|
|
|
20682
20827
|
url: "/search",
|
|
20683
20828
|
origin: "https://www.google.com"
|
|
20684
20829
|
},
|
|
20830
|
+
{
|
|
20831
|
+
url: "/dashboard",
|
|
20832
|
+
origin: "https://my-app.com",
|
|
20833
|
+
params: {
|
|
20834
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
20835
|
+
}
|
|
20836
|
+
},
|
|
20685
20837
|
{
|
|
20686
20838
|
url: "https://www.example.com",
|
|
20687
20839
|
waitUntil: {
|
|
@@ -22341,6 +22493,14 @@ var schemas_default = {
|
|
|
22341
22493
|
description: "Default protocol and domain to use for relative URLs.",
|
|
22342
22494
|
type: "string"
|
|
22343
22495
|
},
|
|
22496
|
+
originParams: {
|
|
22497
|
+
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.",
|
|
22498
|
+
type: "object",
|
|
22499
|
+
additionalProperties: {
|
|
22500
|
+
type: "string"
|
|
22501
|
+
},
|
|
22502
|
+
default: {}
|
|
22503
|
+
},
|
|
22344
22504
|
beforeAny: {
|
|
22345
22505
|
description: "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
|
|
22346
22506
|
anyOf: [
|
|
@@ -23355,6 +23515,14 @@ var schemas_default = {
|
|
|
23355
23515
|
"trim"
|
|
23356
23516
|
]
|
|
23357
23517
|
},
|
|
23518
|
+
params: {
|
|
23519
|
+
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.",
|
|
23520
|
+
type: "object",
|
|
23521
|
+
additionalProperties: {
|
|
23522
|
+
type: "string"
|
|
23523
|
+
},
|
|
23524
|
+
default: {}
|
|
23525
|
+
},
|
|
23358
23526
|
statusCodes: {
|
|
23359
23527
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23360
23528
|
anyOf: [
|
|
@@ -23438,6 +23606,14 @@ var schemas_default = {
|
|
|
23438
23606
|
"trim"
|
|
23439
23607
|
]
|
|
23440
23608
|
},
|
|
23609
|
+
params: {
|
|
23610
|
+
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.",
|
|
23611
|
+
type: "object",
|
|
23612
|
+
additionalProperties: {
|
|
23613
|
+
type: "string"
|
|
23614
|
+
},
|
|
23615
|
+
default: {}
|
|
23616
|
+
},
|
|
23441
23617
|
statusCodes: {
|
|
23442
23618
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
23443
23619
|
anyOf: [
|
|
@@ -23500,6 +23676,13 @@ var schemas_default = {
|
|
|
23500
23676
|
statusCodes: [
|
|
23501
23677
|
200
|
|
23502
23678
|
]
|
|
23679
|
+
},
|
|
23680
|
+
{
|
|
23681
|
+
url: "/health",
|
|
23682
|
+
origin: "https://my-app.com",
|
|
23683
|
+
params: {
|
|
23684
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
23685
|
+
}
|
|
23503
23686
|
}
|
|
23504
23687
|
]
|
|
23505
23688
|
}
|
|
@@ -25440,6 +25623,14 @@ var schemas_default = {
|
|
|
25440
25623
|
"trim"
|
|
25441
25624
|
]
|
|
25442
25625
|
},
|
|
25626
|
+
params: {
|
|
25627
|
+
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.",
|
|
25628
|
+
type: "object",
|
|
25629
|
+
additionalProperties: {
|
|
25630
|
+
type: "string"
|
|
25631
|
+
},
|
|
25632
|
+
default: {}
|
|
25633
|
+
},
|
|
25443
25634
|
timeout: {
|
|
25444
25635
|
type: "integer",
|
|
25445
25636
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25612,6 +25803,14 @@ var schemas_default = {
|
|
|
25612
25803
|
"trim"
|
|
25613
25804
|
]
|
|
25614
25805
|
},
|
|
25806
|
+
params: {
|
|
25807
|
+
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.",
|
|
25808
|
+
type: "object",
|
|
25809
|
+
additionalProperties: {
|
|
25810
|
+
type: "string"
|
|
25811
|
+
},
|
|
25812
|
+
default: {}
|
|
25813
|
+
},
|
|
25615
25814
|
timeout: {
|
|
25616
25815
|
type: "integer",
|
|
25617
25816
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -25761,6 +25960,13 @@ var schemas_default = {
|
|
|
25761
25960
|
url: "/search",
|
|
25762
25961
|
origin: "https://www.google.com"
|
|
25763
25962
|
},
|
|
25963
|
+
{
|
|
25964
|
+
url: "/dashboard",
|
|
25965
|
+
origin: "https://my-app.com",
|
|
25966
|
+
params: {
|
|
25967
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
25968
|
+
}
|
|
25969
|
+
},
|
|
25764
25970
|
{
|
|
25765
25971
|
url: "https://www.example.com",
|
|
25766
25972
|
waitUntil: {
|
|
@@ -32024,6 +32230,14 @@ var schemas_default = {
|
|
|
32024
32230
|
"trim"
|
|
32025
32231
|
]
|
|
32026
32232
|
},
|
|
32233
|
+
params: {
|
|
32234
|
+
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.",
|
|
32235
|
+
type: "object",
|
|
32236
|
+
additionalProperties: {
|
|
32237
|
+
type: "string"
|
|
32238
|
+
},
|
|
32239
|
+
default: {}
|
|
32240
|
+
},
|
|
32027
32241
|
statusCodes: {
|
|
32028
32242
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32029
32243
|
anyOf: [
|
|
@@ -32107,6 +32321,14 @@ var schemas_default = {
|
|
|
32107
32321
|
"trim"
|
|
32108
32322
|
]
|
|
32109
32323
|
},
|
|
32324
|
+
params: {
|
|
32325
|
+
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.",
|
|
32326
|
+
type: "object",
|
|
32327
|
+
additionalProperties: {
|
|
32328
|
+
type: "string"
|
|
32329
|
+
},
|
|
32330
|
+
default: {}
|
|
32331
|
+
},
|
|
32110
32332
|
statusCodes: {
|
|
32111
32333
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
32112
32334
|
anyOf: [
|
|
@@ -32169,6 +32391,13 @@ var schemas_default = {
|
|
|
32169
32391
|
statusCodes: [
|
|
32170
32392
|
200
|
|
32171
32393
|
]
|
|
32394
|
+
},
|
|
32395
|
+
{
|
|
32396
|
+
url: "/health",
|
|
32397
|
+
origin: "https://my-app.com",
|
|
32398
|
+
params: {
|
|
32399
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
32400
|
+
}
|
|
32172
32401
|
}
|
|
32173
32402
|
]
|
|
32174
32403
|
}
|
|
@@ -34109,6 +34338,14 @@ var schemas_default = {
|
|
|
34109
34338
|
"trim"
|
|
34110
34339
|
]
|
|
34111
34340
|
},
|
|
34341
|
+
params: {
|
|
34342
|
+
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.",
|
|
34343
|
+
type: "object",
|
|
34344
|
+
additionalProperties: {
|
|
34345
|
+
type: "string"
|
|
34346
|
+
},
|
|
34347
|
+
default: {}
|
|
34348
|
+
},
|
|
34112
34349
|
timeout: {
|
|
34113
34350
|
type: "integer",
|
|
34114
34351
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34281,6 +34518,14 @@ var schemas_default = {
|
|
|
34281
34518
|
"trim"
|
|
34282
34519
|
]
|
|
34283
34520
|
},
|
|
34521
|
+
params: {
|
|
34522
|
+
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.",
|
|
34523
|
+
type: "object",
|
|
34524
|
+
additionalProperties: {
|
|
34525
|
+
type: "string"
|
|
34526
|
+
},
|
|
34527
|
+
default: {}
|
|
34528
|
+
},
|
|
34284
34529
|
timeout: {
|
|
34285
34530
|
type: "integer",
|
|
34286
34531
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -34430,6 +34675,13 @@ var schemas_default = {
|
|
|
34430
34675
|
url: "/search",
|
|
34431
34676
|
origin: "https://www.google.com"
|
|
34432
34677
|
},
|
|
34678
|
+
{
|
|
34679
|
+
url: "/dashboard",
|
|
34680
|
+
origin: "https://my-app.com",
|
|
34681
|
+
params: {
|
|
34682
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
34683
|
+
}
|
|
34684
|
+
},
|
|
34433
34685
|
{
|
|
34434
34686
|
url: "https://www.example.com",
|
|
34435
34687
|
waitUntil: {
|
|
@@ -39764,6 +40016,12 @@ var schemas_default = {
|
|
|
39764
40016
|
"html"
|
|
39765
40017
|
]
|
|
39766
40018
|
},
|
|
40019
|
+
{
|
|
40020
|
+
origin: "https://my-app.com",
|
|
40021
|
+
originParams: {
|
|
40022
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
40023
|
+
}
|
|
40024
|
+
},
|
|
39767
40025
|
{
|
|
39768
40026
|
fileTypes: [
|
|
39769
40027
|
{
|
|
@@ -41387,6 +41645,14 @@ var schemas_default = {
|
|
|
41387
41645
|
"trim"
|
|
41388
41646
|
]
|
|
41389
41647
|
},
|
|
41648
|
+
params: {
|
|
41649
|
+
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.",
|
|
41650
|
+
type: "object",
|
|
41651
|
+
additionalProperties: {
|
|
41652
|
+
type: "string"
|
|
41653
|
+
},
|
|
41654
|
+
default: {}
|
|
41655
|
+
},
|
|
41390
41656
|
statusCodes: {
|
|
41391
41657
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41392
41658
|
anyOf: [
|
|
@@ -41470,6 +41736,14 @@ var schemas_default = {
|
|
|
41470
41736
|
"trim"
|
|
41471
41737
|
]
|
|
41472
41738
|
},
|
|
41739
|
+
params: {
|
|
41740
|
+
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.",
|
|
41741
|
+
type: "object",
|
|
41742
|
+
additionalProperties: {
|
|
41743
|
+
type: "string"
|
|
41744
|
+
},
|
|
41745
|
+
default: {}
|
|
41746
|
+
},
|
|
41473
41747
|
statusCodes: {
|
|
41474
41748
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
41475
41749
|
anyOf: [
|
|
@@ -41532,6 +41806,13 @@ var schemas_default = {
|
|
|
41532
41806
|
statusCodes: [
|
|
41533
41807
|
200
|
|
41534
41808
|
]
|
|
41809
|
+
},
|
|
41810
|
+
{
|
|
41811
|
+
url: "/health",
|
|
41812
|
+
origin: "https://my-app.com",
|
|
41813
|
+
params: {
|
|
41814
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
41815
|
+
}
|
|
41535
41816
|
}
|
|
41536
41817
|
]
|
|
41537
41818
|
}
|
|
@@ -43472,6 +43753,14 @@ var schemas_default = {
|
|
|
43472
43753
|
"trim"
|
|
43473
43754
|
]
|
|
43474
43755
|
},
|
|
43756
|
+
params: {
|
|
43757
|
+
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.",
|
|
43758
|
+
type: "object",
|
|
43759
|
+
additionalProperties: {
|
|
43760
|
+
type: "string"
|
|
43761
|
+
},
|
|
43762
|
+
default: {}
|
|
43763
|
+
},
|
|
43475
43764
|
timeout: {
|
|
43476
43765
|
type: "integer",
|
|
43477
43766
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43644,6 +43933,14 @@ var schemas_default = {
|
|
|
43644
43933
|
"trim"
|
|
43645
43934
|
]
|
|
43646
43935
|
},
|
|
43936
|
+
params: {
|
|
43937
|
+
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.",
|
|
43938
|
+
type: "object",
|
|
43939
|
+
additionalProperties: {
|
|
43940
|
+
type: "string"
|
|
43941
|
+
},
|
|
43942
|
+
default: {}
|
|
43943
|
+
},
|
|
43647
43944
|
timeout: {
|
|
43648
43945
|
type: "integer",
|
|
43649
43946
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -43793,6 +44090,13 @@ var schemas_default = {
|
|
|
43793
44090
|
url: "/search",
|
|
43794
44091
|
origin: "https://www.google.com"
|
|
43795
44092
|
},
|
|
44093
|
+
{
|
|
44094
|
+
url: "/dashboard",
|
|
44095
|
+
origin: "https://my-app.com",
|
|
44096
|
+
params: {
|
|
44097
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
44098
|
+
}
|
|
44099
|
+
},
|
|
43796
44100
|
{
|
|
43797
44101
|
url: "https://www.example.com",
|
|
43798
44102
|
waitUntil: {
|
|
@@ -49530,6 +49834,14 @@ var schemas_default = {
|
|
|
49530
49834
|
"trim"
|
|
49531
49835
|
]
|
|
49532
49836
|
},
|
|
49837
|
+
params: {
|
|
49838
|
+
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.",
|
|
49839
|
+
type: "object",
|
|
49840
|
+
additionalProperties: {
|
|
49841
|
+
type: "string"
|
|
49842
|
+
},
|
|
49843
|
+
default: {}
|
|
49844
|
+
},
|
|
49533
49845
|
statusCodes: {
|
|
49534
49846
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49535
49847
|
anyOf: [
|
|
@@ -49613,6 +49925,14 @@ var schemas_default = {
|
|
|
49613
49925
|
"trim"
|
|
49614
49926
|
]
|
|
49615
49927
|
},
|
|
49928
|
+
params: {
|
|
49929
|
+
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.",
|
|
49930
|
+
type: "object",
|
|
49931
|
+
additionalProperties: {
|
|
49932
|
+
type: "string"
|
|
49933
|
+
},
|
|
49934
|
+
default: {}
|
|
49935
|
+
},
|
|
49616
49936
|
statusCodes: {
|
|
49617
49937
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
49618
49938
|
anyOf: [
|
|
@@ -49675,6 +49995,13 @@ var schemas_default = {
|
|
|
49675
49995
|
statusCodes: [
|
|
49676
49996
|
200
|
|
49677
49997
|
]
|
|
49998
|
+
},
|
|
49999
|
+
{
|
|
50000
|
+
url: "/health",
|
|
50001
|
+
origin: "https://my-app.com",
|
|
50002
|
+
params: {
|
|
50003
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
50004
|
+
}
|
|
49678
50005
|
}
|
|
49679
50006
|
]
|
|
49680
50007
|
}
|
|
@@ -51615,6 +51942,14 @@ var schemas_default = {
|
|
|
51615
51942
|
"trim"
|
|
51616
51943
|
]
|
|
51617
51944
|
},
|
|
51945
|
+
params: {
|
|
51946
|
+
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.",
|
|
51947
|
+
type: "object",
|
|
51948
|
+
additionalProperties: {
|
|
51949
|
+
type: "string"
|
|
51950
|
+
},
|
|
51951
|
+
default: {}
|
|
51952
|
+
},
|
|
51618
51953
|
timeout: {
|
|
51619
51954
|
type: "integer",
|
|
51620
51955
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51787,6 +52122,14 @@ var schemas_default = {
|
|
|
51787
52122
|
"trim"
|
|
51788
52123
|
]
|
|
51789
52124
|
},
|
|
52125
|
+
params: {
|
|
52126
|
+
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.",
|
|
52127
|
+
type: "object",
|
|
52128
|
+
additionalProperties: {
|
|
52129
|
+
type: "string"
|
|
52130
|
+
},
|
|
52131
|
+
default: {}
|
|
52132
|
+
},
|
|
51790
52133
|
timeout: {
|
|
51791
52134
|
type: "integer",
|
|
51792
52135
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -51936,6 +52279,13 @@ var schemas_default = {
|
|
|
51936
52279
|
url: "/search",
|
|
51937
52280
|
origin: "https://www.google.com"
|
|
51938
52281
|
},
|
|
52282
|
+
{
|
|
52283
|
+
url: "/dashboard",
|
|
52284
|
+
origin: "https://my-app.com",
|
|
52285
|
+
params: {
|
|
52286
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
52287
|
+
}
|
|
52288
|
+
},
|
|
51939
52289
|
{
|
|
51940
52290
|
url: "https://www.example.com",
|
|
51941
52291
|
waitUntil: {
|
|
@@ -59383,6 +59733,14 @@ var schemas_default = {
|
|
|
59383
59733
|
"trim"
|
|
59384
59734
|
]
|
|
59385
59735
|
},
|
|
59736
|
+
params: {
|
|
59737
|
+
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.",
|
|
59738
|
+
type: "object",
|
|
59739
|
+
additionalProperties: {
|
|
59740
|
+
type: "string"
|
|
59741
|
+
},
|
|
59742
|
+
default: {}
|
|
59743
|
+
},
|
|
59386
59744
|
statusCodes: {
|
|
59387
59745
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59388
59746
|
anyOf: [
|
|
@@ -59466,6 +59824,14 @@ var schemas_default = {
|
|
|
59466
59824
|
"trim"
|
|
59467
59825
|
]
|
|
59468
59826
|
},
|
|
59827
|
+
params: {
|
|
59828
|
+
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.",
|
|
59829
|
+
type: "object",
|
|
59830
|
+
additionalProperties: {
|
|
59831
|
+
type: "string"
|
|
59832
|
+
},
|
|
59833
|
+
default: {}
|
|
59834
|
+
},
|
|
59469
59835
|
statusCodes: {
|
|
59470
59836
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
59471
59837
|
anyOf: [
|
|
@@ -59528,6 +59894,13 @@ var schemas_default = {
|
|
|
59528
59894
|
statusCodes: [
|
|
59529
59895
|
200
|
|
59530
59896
|
]
|
|
59897
|
+
},
|
|
59898
|
+
{
|
|
59899
|
+
url: "/health",
|
|
59900
|
+
origin: "https://my-app.com",
|
|
59901
|
+
params: {
|
|
59902
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
59903
|
+
}
|
|
59531
59904
|
}
|
|
59532
59905
|
]
|
|
59533
59906
|
}
|
|
@@ -61468,6 +61841,14 @@ var schemas_default = {
|
|
|
61468
61841
|
"trim"
|
|
61469
61842
|
]
|
|
61470
61843
|
},
|
|
61844
|
+
params: {
|
|
61845
|
+
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.",
|
|
61846
|
+
type: "object",
|
|
61847
|
+
additionalProperties: {
|
|
61848
|
+
type: "string"
|
|
61849
|
+
},
|
|
61850
|
+
default: {}
|
|
61851
|
+
},
|
|
61471
61852
|
timeout: {
|
|
61472
61853
|
type: "integer",
|
|
61473
61854
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61640,6 +62021,14 @@ var schemas_default = {
|
|
|
61640
62021
|
"trim"
|
|
61641
62022
|
]
|
|
61642
62023
|
},
|
|
62024
|
+
params: {
|
|
62025
|
+
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.",
|
|
62026
|
+
type: "object",
|
|
62027
|
+
additionalProperties: {
|
|
62028
|
+
type: "string"
|
|
62029
|
+
},
|
|
62030
|
+
default: {}
|
|
62031
|
+
},
|
|
61643
62032
|
timeout: {
|
|
61644
62033
|
type: "integer",
|
|
61645
62034
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -61789,6 +62178,13 @@ var schemas_default = {
|
|
|
61789
62178
|
url: "/search",
|
|
61790
62179
|
origin: "https://www.google.com"
|
|
61791
62180
|
},
|
|
62181
|
+
{
|
|
62182
|
+
url: "/dashboard",
|
|
62183
|
+
origin: "https://my-app.com",
|
|
62184
|
+
params: {
|
|
62185
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
62186
|
+
}
|
|
62187
|
+
},
|
|
61792
62188
|
{
|
|
61793
62189
|
url: "https://www.example.com",
|
|
61794
62190
|
waitUntil: {
|
|
@@ -67526,6 +67922,14 @@ var schemas_default = {
|
|
|
67526
67922
|
"trim"
|
|
67527
67923
|
]
|
|
67528
67924
|
},
|
|
67925
|
+
params: {
|
|
67926
|
+
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.",
|
|
67927
|
+
type: "object",
|
|
67928
|
+
additionalProperties: {
|
|
67929
|
+
type: "string"
|
|
67930
|
+
},
|
|
67931
|
+
default: {}
|
|
67932
|
+
},
|
|
67529
67933
|
statusCodes: {
|
|
67530
67934
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67531
67935
|
anyOf: [
|
|
@@ -67609,6 +68013,14 @@ var schemas_default = {
|
|
|
67609
68013
|
"trim"
|
|
67610
68014
|
]
|
|
67611
68015
|
},
|
|
68016
|
+
params: {
|
|
68017
|
+
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.",
|
|
68018
|
+
type: "object",
|
|
68019
|
+
additionalProperties: {
|
|
68020
|
+
type: "string"
|
|
68021
|
+
},
|
|
68022
|
+
default: {}
|
|
68023
|
+
},
|
|
67612
68024
|
statusCodes: {
|
|
67613
68025
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
67614
68026
|
anyOf: [
|
|
@@ -67671,6 +68083,13 @@ var schemas_default = {
|
|
|
67671
68083
|
statusCodes: [
|
|
67672
68084
|
200
|
|
67673
68085
|
]
|
|
68086
|
+
},
|
|
68087
|
+
{
|
|
68088
|
+
url: "/health",
|
|
68089
|
+
origin: "https://my-app.com",
|
|
68090
|
+
params: {
|
|
68091
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
68092
|
+
}
|
|
67674
68093
|
}
|
|
67675
68094
|
]
|
|
67676
68095
|
}
|
|
@@ -69611,6 +70030,14 @@ var schemas_default = {
|
|
|
69611
70030
|
"trim"
|
|
69612
70031
|
]
|
|
69613
70032
|
},
|
|
70033
|
+
params: {
|
|
70034
|
+
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.",
|
|
70035
|
+
type: "object",
|
|
70036
|
+
additionalProperties: {
|
|
70037
|
+
type: "string"
|
|
70038
|
+
},
|
|
70039
|
+
default: {}
|
|
70040
|
+
},
|
|
69614
70041
|
timeout: {
|
|
69615
70042
|
type: "integer",
|
|
69616
70043
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69783,6 +70210,14 @@ var schemas_default = {
|
|
|
69783
70210
|
"trim"
|
|
69784
70211
|
]
|
|
69785
70212
|
},
|
|
70213
|
+
params: {
|
|
70214
|
+
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.",
|
|
70215
|
+
type: "object",
|
|
70216
|
+
additionalProperties: {
|
|
70217
|
+
type: "string"
|
|
70218
|
+
},
|
|
70219
|
+
default: {}
|
|
70220
|
+
},
|
|
69786
70221
|
timeout: {
|
|
69787
70222
|
type: "integer",
|
|
69788
70223
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -69932,6 +70367,13 @@ var schemas_default = {
|
|
|
69932
70367
|
url: "/search",
|
|
69933
70368
|
origin: "https://www.google.com"
|
|
69934
70369
|
},
|
|
70370
|
+
{
|
|
70371
|
+
url: "/dashboard",
|
|
70372
|
+
origin: "https://my-app.com",
|
|
70373
|
+
params: {
|
|
70374
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
70375
|
+
}
|
|
70376
|
+
},
|
|
69935
70377
|
{
|
|
69936
70378
|
url: "https://www.example.com",
|
|
69937
70379
|
waitUntil: {
|
|
@@ -78767,6 +79209,14 @@ var schemas_default = {
|
|
|
78767
79209
|
"trim"
|
|
78768
79210
|
]
|
|
78769
79211
|
},
|
|
79212
|
+
params: {
|
|
79213
|
+
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.",
|
|
79214
|
+
type: "object",
|
|
79215
|
+
additionalProperties: {
|
|
79216
|
+
type: "string"
|
|
79217
|
+
},
|
|
79218
|
+
default: {}
|
|
79219
|
+
},
|
|
78770
79220
|
statusCodes: {
|
|
78771
79221
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78772
79222
|
anyOf: [
|
|
@@ -78850,6 +79300,14 @@ var schemas_default = {
|
|
|
78850
79300
|
"trim"
|
|
78851
79301
|
]
|
|
78852
79302
|
},
|
|
79303
|
+
params: {
|
|
79304
|
+
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.",
|
|
79305
|
+
type: "object",
|
|
79306
|
+
additionalProperties: {
|
|
79307
|
+
type: "string"
|
|
79308
|
+
},
|
|
79309
|
+
default: {}
|
|
79310
|
+
},
|
|
78853
79311
|
statusCodes: {
|
|
78854
79312
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
78855
79313
|
anyOf: [
|
|
@@ -78912,6 +79370,13 @@ var schemas_default = {
|
|
|
78912
79370
|
statusCodes: [
|
|
78913
79371
|
200
|
|
78914
79372
|
]
|
|
79373
|
+
},
|
|
79374
|
+
{
|
|
79375
|
+
url: "/health",
|
|
79376
|
+
origin: "https://my-app.com",
|
|
79377
|
+
params: {
|
|
79378
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
79379
|
+
}
|
|
78915
79380
|
}
|
|
78916
79381
|
]
|
|
78917
79382
|
}
|
|
@@ -80852,6 +81317,14 @@ var schemas_default = {
|
|
|
80852
81317
|
"trim"
|
|
80853
81318
|
]
|
|
80854
81319
|
},
|
|
81320
|
+
params: {
|
|
81321
|
+
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.",
|
|
81322
|
+
type: "object",
|
|
81323
|
+
additionalProperties: {
|
|
81324
|
+
type: "string"
|
|
81325
|
+
},
|
|
81326
|
+
default: {}
|
|
81327
|
+
},
|
|
80855
81328
|
timeout: {
|
|
80856
81329
|
type: "integer",
|
|
80857
81330
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -81024,6 +81497,14 @@ var schemas_default = {
|
|
|
81024
81497
|
"trim"
|
|
81025
81498
|
]
|
|
81026
81499
|
},
|
|
81500
|
+
params: {
|
|
81501
|
+
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.",
|
|
81502
|
+
type: "object",
|
|
81503
|
+
additionalProperties: {
|
|
81504
|
+
type: "string"
|
|
81505
|
+
},
|
|
81506
|
+
default: {}
|
|
81507
|
+
},
|
|
81027
81508
|
timeout: {
|
|
81028
81509
|
type: "integer",
|
|
81029
81510
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -81173,6 +81654,13 @@ var schemas_default = {
|
|
|
81173
81654
|
url: "/search",
|
|
81174
81655
|
origin: "https://www.google.com"
|
|
81175
81656
|
},
|
|
81657
|
+
{
|
|
81658
|
+
url: "/dashboard",
|
|
81659
|
+
origin: "https://my-app.com",
|
|
81660
|
+
params: {
|
|
81661
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
81662
|
+
}
|
|
81663
|
+
},
|
|
81176
81664
|
{
|
|
81177
81665
|
url: "https://www.example.com",
|
|
81178
81666
|
waitUntil: {
|
|
@@ -86910,6 +87398,14 @@ var schemas_default = {
|
|
|
86910
87398
|
"trim"
|
|
86911
87399
|
]
|
|
86912
87400
|
},
|
|
87401
|
+
params: {
|
|
87402
|
+
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.",
|
|
87403
|
+
type: "object",
|
|
87404
|
+
additionalProperties: {
|
|
87405
|
+
type: "string"
|
|
87406
|
+
},
|
|
87407
|
+
default: {}
|
|
87408
|
+
},
|
|
86913
87409
|
statusCodes: {
|
|
86914
87410
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86915
87411
|
anyOf: [
|
|
@@ -86993,6 +87489,14 @@ var schemas_default = {
|
|
|
86993
87489
|
"trim"
|
|
86994
87490
|
]
|
|
86995
87491
|
},
|
|
87492
|
+
params: {
|
|
87493
|
+
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.",
|
|
87494
|
+
type: "object",
|
|
87495
|
+
additionalProperties: {
|
|
87496
|
+
type: "string"
|
|
87497
|
+
},
|
|
87498
|
+
default: {}
|
|
87499
|
+
},
|
|
86996
87500
|
statusCodes: {
|
|
86997
87501
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
86998
87502
|
anyOf: [
|
|
@@ -87055,6 +87559,13 @@ var schemas_default = {
|
|
|
87055
87559
|
statusCodes: [
|
|
87056
87560
|
200
|
|
87057
87561
|
]
|
|
87562
|
+
},
|
|
87563
|
+
{
|
|
87564
|
+
url: "/health",
|
|
87565
|
+
origin: "https://my-app.com",
|
|
87566
|
+
params: {
|
|
87567
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
87568
|
+
}
|
|
87058
87569
|
}
|
|
87059
87570
|
]
|
|
87060
87571
|
}
|
|
@@ -88995,6 +89506,14 @@ var schemas_default = {
|
|
|
88995
89506
|
"trim"
|
|
88996
89507
|
]
|
|
88997
89508
|
},
|
|
89509
|
+
params: {
|
|
89510
|
+
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.",
|
|
89511
|
+
type: "object",
|
|
89512
|
+
additionalProperties: {
|
|
89513
|
+
type: "string"
|
|
89514
|
+
},
|
|
89515
|
+
default: {}
|
|
89516
|
+
},
|
|
88998
89517
|
timeout: {
|
|
88999
89518
|
type: "integer",
|
|
89000
89519
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89167,6 +89686,14 @@ var schemas_default = {
|
|
|
89167
89686
|
"trim"
|
|
89168
89687
|
]
|
|
89169
89688
|
},
|
|
89689
|
+
params: {
|
|
89690
|
+
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.",
|
|
89691
|
+
type: "object",
|
|
89692
|
+
additionalProperties: {
|
|
89693
|
+
type: "string"
|
|
89694
|
+
},
|
|
89695
|
+
default: {}
|
|
89696
|
+
},
|
|
89170
89697
|
timeout: {
|
|
89171
89698
|
type: "integer",
|
|
89172
89699
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -89316,6 +89843,13 @@ var schemas_default = {
|
|
|
89316
89843
|
url: "/search",
|
|
89317
89844
|
origin: "https://www.google.com"
|
|
89318
89845
|
},
|
|
89846
|
+
{
|
|
89847
|
+
url: "/dashboard",
|
|
89848
|
+
origin: "https://my-app.com",
|
|
89849
|
+
params: {
|
|
89850
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
89851
|
+
}
|
|
89852
|
+
},
|
|
89319
89853
|
{
|
|
89320
89854
|
url: "https://www.example.com",
|
|
89321
89855
|
waitUntil: {
|
|
@@ -95333,6 +95867,14 @@ var schemas_default = {
|
|
|
95333
95867
|
"trim"
|
|
95334
95868
|
]
|
|
95335
95869
|
},
|
|
95870
|
+
params: {
|
|
95871
|
+
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.",
|
|
95872
|
+
type: "object",
|
|
95873
|
+
additionalProperties: {
|
|
95874
|
+
type: "string"
|
|
95875
|
+
},
|
|
95876
|
+
default: {}
|
|
95877
|
+
},
|
|
95336
95878
|
statusCodes: {
|
|
95337
95879
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95338
95880
|
anyOf: [
|
|
@@ -95416,6 +95958,14 @@ var schemas_default = {
|
|
|
95416
95958
|
"trim"
|
|
95417
95959
|
]
|
|
95418
95960
|
},
|
|
95961
|
+
params: {
|
|
95962
|
+
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.",
|
|
95963
|
+
type: "object",
|
|
95964
|
+
additionalProperties: {
|
|
95965
|
+
type: "string"
|
|
95966
|
+
},
|
|
95967
|
+
default: {}
|
|
95968
|
+
},
|
|
95419
95969
|
statusCodes: {
|
|
95420
95970
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
95421
95971
|
anyOf: [
|
|
@@ -95478,6 +96028,13 @@ var schemas_default = {
|
|
|
95478
96028
|
statusCodes: [
|
|
95479
96029
|
200
|
|
95480
96030
|
]
|
|
96031
|
+
},
|
|
96032
|
+
{
|
|
96033
|
+
url: "/health",
|
|
96034
|
+
origin: "https://my-app.com",
|
|
96035
|
+
params: {
|
|
96036
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
96037
|
+
}
|
|
95481
96038
|
}
|
|
95482
96039
|
]
|
|
95483
96040
|
}
|
|
@@ -97418,6 +97975,14 @@ var schemas_default = {
|
|
|
97418
97975
|
"trim"
|
|
97419
97976
|
]
|
|
97420
97977
|
},
|
|
97978
|
+
params: {
|
|
97979
|
+
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.",
|
|
97980
|
+
type: "object",
|
|
97981
|
+
additionalProperties: {
|
|
97982
|
+
type: "string"
|
|
97983
|
+
},
|
|
97984
|
+
default: {}
|
|
97985
|
+
},
|
|
97421
97986
|
timeout: {
|
|
97422
97987
|
type: "integer",
|
|
97423
97988
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97590,6 +98155,14 @@ var schemas_default = {
|
|
|
97590
98155
|
"trim"
|
|
97591
98156
|
]
|
|
97592
98157
|
},
|
|
98158
|
+
params: {
|
|
98159
|
+
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.",
|
|
98160
|
+
type: "object",
|
|
98161
|
+
additionalProperties: {
|
|
98162
|
+
type: "string"
|
|
98163
|
+
},
|
|
98164
|
+
default: {}
|
|
98165
|
+
},
|
|
97593
98166
|
timeout: {
|
|
97594
98167
|
type: "integer",
|
|
97595
98168
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -97739,6 +98312,13 @@ var schemas_default = {
|
|
|
97739
98312
|
url: "/search",
|
|
97740
98313
|
origin: "https://www.google.com"
|
|
97741
98314
|
},
|
|
98315
|
+
{
|
|
98316
|
+
url: "/dashboard",
|
|
98317
|
+
origin: "https://my-app.com",
|
|
98318
|
+
params: {
|
|
98319
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
98320
|
+
}
|
|
98321
|
+
},
|
|
97742
98322
|
{
|
|
97743
98323
|
url: "https://www.example.com",
|
|
97744
98324
|
waitUntil: {
|
|
@@ -103829,6 +104409,14 @@ var schemas_default = {
|
|
|
103829
104409
|
"trim"
|
|
103830
104410
|
]
|
|
103831
104411
|
},
|
|
104412
|
+
params: {
|
|
104413
|
+
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.",
|
|
104414
|
+
type: "object",
|
|
104415
|
+
additionalProperties: {
|
|
104416
|
+
type: "string"
|
|
104417
|
+
},
|
|
104418
|
+
default: {}
|
|
104419
|
+
},
|
|
103832
104420
|
statusCodes: {
|
|
103833
104421
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103834
104422
|
anyOf: [
|
|
@@ -103912,6 +104500,14 @@ var schemas_default = {
|
|
|
103912
104500
|
"trim"
|
|
103913
104501
|
]
|
|
103914
104502
|
},
|
|
104503
|
+
params: {
|
|
104504
|
+
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.",
|
|
104505
|
+
type: "object",
|
|
104506
|
+
additionalProperties: {
|
|
104507
|
+
type: "string"
|
|
104508
|
+
},
|
|
104509
|
+
default: {}
|
|
104510
|
+
},
|
|
103915
104511
|
statusCodes: {
|
|
103916
104512
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
103917
104513
|
anyOf: [
|
|
@@ -103974,6 +104570,13 @@ var schemas_default = {
|
|
|
103974
104570
|
statusCodes: [
|
|
103975
104571
|
200
|
|
103976
104572
|
]
|
|
104573
|
+
},
|
|
104574
|
+
{
|
|
104575
|
+
url: "/health",
|
|
104576
|
+
origin: "https://my-app.com",
|
|
104577
|
+
params: {
|
|
104578
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
104579
|
+
}
|
|
103977
104580
|
}
|
|
103978
104581
|
]
|
|
103979
104582
|
}
|
|
@@ -105914,6 +106517,14 @@ var schemas_default = {
|
|
|
105914
106517
|
"trim"
|
|
105915
106518
|
]
|
|
105916
106519
|
},
|
|
106520
|
+
params: {
|
|
106521
|
+
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.",
|
|
106522
|
+
type: "object",
|
|
106523
|
+
additionalProperties: {
|
|
106524
|
+
type: "string"
|
|
106525
|
+
},
|
|
106526
|
+
default: {}
|
|
106527
|
+
},
|
|
105917
106528
|
timeout: {
|
|
105918
106529
|
type: "integer",
|
|
105919
106530
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106086,6 +106697,14 @@ var schemas_default = {
|
|
|
106086
106697
|
"trim"
|
|
106087
106698
|
]
|
|
106088
106699
|
},
|
|
106700
|
+
params: {
|
|
106701
|
+
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.",
|
|
106702
|
+
type: "object",
|
|
106703
|
+
additionalProperties: {
|
|
106704
|
+
type: "string"
|
|
106705
|
+
},
|
|
106706
|
+
default: {}
|
|
106707
|
+
},
|
|
106089
106708
|
timeout: {
|
|
106090
106709
|
type: "integer",
|
|
106091
106710
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -106235,6 +106854,13 @@ var schemas_default = {
|
|
|
106235
106854
|
url: "/search",
|
|
106236
106855
|
origin: "https://www.google.com"
|
|
106237
106856
|
},
|
|
106857
|
+
{
|
|
106858
|
+
url: "/dashboard",
|
|
106859
|
+
origin: "https://my-app.com",
|
|
106860
|
+
params: {
|
|
106861
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
106862
|
+
}
|
|
106863
|
+
},
|
|
106238
106864
|
{
|
|
106239
106865
|
url: "https://www.example.com",
|
|
106240
106866
|
waitUntil: {
|
|
@@ -111972,6 +112598,14 @@ var schemas_default = {
|
|
|
111972
112598
|
"trim"
|
|
111973
112599
|
]
|
|
111974
112600
|
},
|
|
112601
|
+
params: {
|
|
112602
|
+
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.",
|
|
112603
|
+
type: "object",
|
|
112604
|
+
additionalProperties: {
|
|
112605
|
+
type: "string"
|
|
112606
|
+
},
|
|
112607
|
+
default: {}
|
|
112608
|
+
},
|
|
111975
112609
|
statusCodes: {
|
|
111976
112610
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
111977
112611
|
anyOf: [
|
|
@@ -112055,6 +112689,14 @@ var schemas_default = {
|
|
|
112055
112689
|
"trim"
|
|
112056
112690
|
]
|
|
112057
112691
|
},
|
|
112692
|
+
params: {
|
|
112693
|
+
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.",
|
|
112694
|
+
type: "object",
|
|
112695
|
+
additionalProperties: {
|
|
112696
|
+
type: "string"
|
|
112697
|
+
},
|
|
112698
|
+
default: {}
|
|
112699
|
+
},
|
|
112058
112700
|
statusCodes: {
|
|
112059
112701
|
description: "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
|
|
112060
112702
|
anyOf: [
|
|
@@ -112117,6 +112759,13 @@ var schemas_default = {
|
|
|
112117
112759
|
statusCodes: [
|
|
112118
112760
|
200
|
|
112119
112761
|
]
|
|
112762
|
+
},
|
|
112763
|
+
{
|
|
112764
|
+
url: "/health",
|
|
112765
|
+
origin: "https://my-app.com",
|
|
112766
|
+
params: {
|
|
112767
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
112768
|
+
}
|
|
112120
112769
|
}
|
|
112121
112770
|
]
|
|
112122
112771
|
}
|
|
@@ -114057,6 +114706,14 @@ var schemas_default = {
|
|
|
114057
114706
|
"trim"
|
|
114058
114707
|
]
|
|
114059
114708
|
},
|
|
114709
|
+
params: {
|
|
114710
|
+
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.",
|
|
114711
|
+
type: "object",
|
|
114712
|
+
additionalProperties: {
|
|
114713
|
+
type: "string"
|
|
114714
|
+
},
|
|
114715
|
+
default: {}
|
|
114716
|
+
},
|
|
114060
114717
|
timeout: {
|
|
114061
114718
|
type: "integer",
|
|
114062
114719
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114229,6 +114886,14 @@ var schemas_default = {
|
|
|
114229
114886
|
"trim"
|
|
114230
114887
|
]
|
|
114231
114888
|
},
|
|
114889
|
+
params: {
|
|
114890
|
+
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.",
|
|
114891
|
+
type: "object",
|
|
114892
|
+
additionalProperties: {
|
|
114893
|
+
type: "string"
|
|
114894
|
+
},
|
|
114895
|
+
default: {}
|
|
114896
|
+
},
|
|
114232
114897
|
timeout: {
|
|
114233
114898
|
type: "integer",
|
|
114234
114899
|
description: "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
|
|
@@ -114378,6 +115043,13 @@ var schemas_default = {
|
|
|
114378
115043
|
url: "/search",
|
|
114379
115044
|
origin: "https://www.google.com"
|
|
114380
115045
|
},
|
|
115046
|
+
{
|
|
115047
|
+
url: "/dashboard",
|
|
115048
|
+
origin: "https://my-app.com",
|
|
115049
|
+
params: {
|
|
115050
|
+
__clerk_testing_token: "$CLERK_TESTING_TOKEN"
|
|
115051
|
+
}
|
|
115052
|
+
},
|
|
114381
115053
|
{
|
|
114382
115054
|
url: "https://www.example.com",
|
|
114383
115055
|
waitUntil: {
|
|
@@ -129315,6 +129987,36 @@ function isRelativeUrl(url) {
|
|
|
129315
129987
|
return true;
|
|
129316
129988
|
}
|
|
129317
129989
|
}
|
|
129990
|
+
function appendQueryParams(url, params) {
|
|
129991
|
+
if (!params || typeof params !== "object" || Array.isArray(params))
|
|
129992
|
+
return url;
|
|
129993
|
+
const entries = Object.entries(params).filter(([, v]) => v !== void 0 && v !== null);
|
|
129994
|
+
if (entries.length === 0)
|
|
129995
|
+
return url;
|
|
129996
|
+
const hashIdx = url.indexOf("#");
|
|
129997
|
+
const fragment = hashIdx >= 0 ? url.slice(hashIdx) : "";
|
|
129998
|
+
const base = hashIdx >= 0 ? url.slice(0, hashIdx) : url;
|
|
129999
|
+
const queryIdx = base.indexOf("?");
|
|
130000
|
+
const pathAndAuthority = queryIdx >= 0 ? base.slice(0, queryIdx) : base;
|
|
130001
|
+
const existingQuery = queryIdx >= 0 ? base.slice(queryIdx + 1) : "";
|
|
130002
|
+
const newKeys = new Set(entries.map(([k]) => k));
|
|
130003
|
+
const preservedSegments = existingQuery ? existingQuery.split("&").filter((segment) => {
|
|
130004
|
+
if (!segment)
|
|
130005
|
+
return false;
|
|
130006
|
+
const eqIdx = segment.indexOf("=");
|
|
130007
|
+
const rawKey = eqIdx >= 0 ? segment.slice(0, eqIdx) : segment;
|
|
130008
|
+
let decodedKey;
|
|
130009
|
+
try {
|
|
130010
|
+
decodedKey = decodeURIComponent(rawKey);
|
|
130011
|
+
} catch {
|
|
130012
|
+
decodedKey = rawKey;
|
|
130013
|
+
}
|
|
130014
|
+
return !newKeys.has(decodedKey);
|
|
130015
|
+
}) : [];
|
|
130016
|
+
const newPairs = entries.map(([k, v]) => `${encodeURIComponent(k)}=${encodeURIComponent(String(v))}`);
|
|
130017
|
+
const query = [...preservedSegments, ...newPairs].join("&");
|
|
130018
|
+
return pathAndAuthority + (query ? "?" + query : "") + fragment;
|
|
130019
|
+
}
|
|
129318
130020
|
function cleanTemp() {
|
|
129319
130021
|
const tempDir = import_node_path.default.join(import_node_os.default.tmpdir(), "doc-detective");
|
|
129320
130022
|
if (import_node_fs.default.existsSync(tempDir)) {
|
|
@@ -133972,7 +134674,8 @@ async function goTo({ config, step, driver }) {
|
|
|
133972
134674
|
if (typeof step.goTo === "string") {
|
|
133973
134675
|
step.goTo = { url: step.goTo };
|
|
133974
134676
|
}
|
|
133975
|
-
|
|
134677
|
+
const relative = isRelativeUrl(step.goTo.url);
|
|
134678
|
+
if (relative) {
|
|
133976
134679
|
if (!step.goTo.origin && !config.origin) {
|
|
133977
134680
|
result.status = "FAIL";
|
|
133978
134681
|
result.description = "Relative URL provided without origin. Specify an origin in either the step or the config.";
|
|
@@ -133984,6 +134687,10 @@ async function goTo({ config, step, driver }) {
|
|
|
133984
134687
|
}
|
|
133985
134688
|
step.goTo.url = step.goTo.origin + step.goTo.url;
|
|
133986
134689
|
}
|
|
134690
|
+
if (relative) {
|
|
134691
|
+
step.goTo.url = appendQueryParams(step.goTo.url, config.originParams);
|
|
134692
|
+
}
|
|
134693
|
+
step.goTo.url = appendQueryParams(step.goTo.url, step.goTo.params);
|
|
133987
134694
|
if (step.goTo.url && !step.goTo.url.includes("://"))
|
|
133988
134695
|
step.goTo.url = "https://" + step.goTo.url;
|
|
133989
134696
|
const isValidStep = validate({ schemaKey: "step_v3", object: step });
|
|
@@ -134552,7 +135259,8 @@ async function checkLink({ config, step }) {
|
|
|
134552
135259
|
if (typeof step.checkLink === "string") {
|
|
134553
135260
|
step.checkLink = { url: step.checkLink };
|
|
134554
135261
|
}
|
|
134555
|
-
|
|
135262
|
+
const relative = isRelativeUrl(step.checkLink.url);
|
|
135263
|
+
if (relative) {
|
|
134556
135264
|
if (!step.checkLink.origin && !config.origin) {
|
|
134557
135265
|
result.status = "FAIL";
|
|
134558
135266
|
result.description = "Relative URL provided without origin. Specify an origin in either the step or the config.";
|
|
@@ -134564,6 +135272,10 @@ async function checkLink({ config, step }) {
|
|
|
134564
135272
|
}
|
|
134565
135273
|
step.checkLink.url = step.checkLink.origin + step.checkLink.url;
|
|
134566
135274
|
}
|
|
135275
|
+
if (relative) {
|
|
135276
|
+
step.checkLink.url = appendQueryParams(step.checkLink.url, config.originParams);
|
|
135277
|
+
}
|
|
135278
|
+
step.checkLink.url = appendQueryParams(step.checkLink.url, step.checkLink.params);
|
|
134567
135279
|
if (step.checkLink.url && !step.checkLink.url.includes("://"))
|
|
134568
135280
|
step.checkLink.url = "https://" + step.checkLink.url;
|
|
134569
135281
|
const isValidStep = validate({ schemaKey: "step_v3", object: step });
|