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.
@@ -36,6 +36,14 @@
36
36
  "trim"
37
37
  ]
38
38
  },
39
+ "params": {
40
+ "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.",
41
+ "type": "object",
42
+ "additionalProperties": {
43
+ "type": "string"
44
+ },
45
+ "default": {}
46
+ },
39
47
  "statusCodes": {
40
48
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
41
49
  "anyOf": [
@@ -119,6 +127,14 @@
119
127
  "trim"
120
128
  ]
121
129
  },
130
+ "params": {
131
+ "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.",
132
+ "type": "object",
133
+ "additionalProperties": {
134
+ "type": "string"
135
+ },
136
+ "default": {}
137
+ },
122
138
  "statusCodes": {
123
139
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
124
140
  "anyOf": [
@@ -181,6 +197,13 @@
181
197
  "statusCodes": [
182
198
  200
183
199
  ]
200
+ },
201
+ {
202
+ "url": "/health",
203
+ "origin": "https://my-app.com",
204
+ "params": {
205
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
206
+ }
184
207
  }
185
208
  ]
186
209
  },
@@ -526,6 +549,14 @@
526
549
  "description": "Default protocol and domain to use for relative URLs.",
527
550
  "type": "string"
528
551
  },
552
+ "originParams": {
553
+ "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 — avoid putting long-lived secrets here.",
554
+ "type": "object",
555
+ "additionalProperties": {
556
+ "type": "string"
557
+ },
558
+ "default": {}
559
+ },
529
560
  "beforeAny": {
530
561
  "description": "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
531
562
  "anyOf": [
@@ -1540,6 +1571,14 @@
1540
1571
  "trim"
1541
1572
  ]
1542
1573
  },
1574
+ "params": {
1575
+ "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.",
1576
+ "type": "object",
1577
+ "additionalProperties": {
1578
+ "type": "string"
1579
+ },
1580
+ "default": {}
1581
+ },
1543
1582
  "statusCodes": {
1544
1583
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
1545
1584
  "anyOf": [
@@ -1623,6 +1662,14 @@
1623
1662
  "trim"
1624
1663
  ]
1625
1664
  },
1665
+ "params": {
1666
+ "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.",
1667
+ "type": "object",
1668
+ "additionalProperties": {
1669
+ "type": "string"
1670
+ },
1671
+ "default": {}
1672
+ },
1626
1673
  "statusCodes": {
1627
1674
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
1628
1675
  "anyOf": [
@@ -1685,6 +1732,13 @@
1685
1732
  "statusCodes": [
1686
1733
  200
1687
1734
  ]
1735
+ },
1736
+ {
1737
+ "url": "/health",
1738
+ "origin": "https://my-app.com",
1739
+ "params": {
1740
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
1741
+ }
1688
1742
  }
1689
1743
  ]
1690
1744
  }
@@ -3625,6 +3679,14 @@
3625
3679
  "trim"
3626
3680
  ]
3627
3681
  },
3682
+ "params": {
3683
+ "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.",
3684
+ "type": "object",
3685
+ "additionalProperties": {
3686
+ "type": "string"
3687
+ },
3688
+ "default": {}
3689
+ },
3628
3690
  "timeout": {
3629
3691
  "type": "integer",
3630
3692
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -3797,6 +3859,14 @@
3797
3859
  "trim"
3798
3860
  ]
3799
3861
  },
3862
+ "params": {
3863
+ "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.",
3864
+ "type": "object",
3865
+ "additionalProperties": {
3866
+ "type": "string"
3867
+ },
3868
+ "default": {}
3869
+ },
3800
3870
  "timeout": {
3801
3871
  "type": "integer",
3802
3872
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -3946,6 +4016,13 @@
3946
4016
  "url": "/search",
3947
4017
  "origin": "https://www.google.com"
3948
4018
  },
4019
+ {
4020
+ "url": "/dashboard",
4021
+ "origin": "https://my-app.com",
4022
+ "params": {
4023
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
4024
+ }
4025
+ },
3949
4026
  {
3950
4027
  "url": "https://www.example.com",
3951
4028
  "waitUntil": {
@@ -10209,6 +10286,14 @@
10209
10286
  "trim"
10210
10287
  ]
10211
10288
  },
10289
+ "params": {
10290
+ "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.",
10291
+ "type": "object",
10292
+ "additionalProperties": {
10293
+ "type": "string"
10294
+ },
10295
+ "default": {}
10296
+ },
10212
10297
  "statusCodes": {
10213
10298
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
10214
10299
  "anyOf": [
@@ -10292,6 +10377,14 @@
10292
10377
  "trim"
10293
10378
  ]
10294
10379
  },
10380
+ "params": {
10381
+ "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.",
10382
+ "type": "object",
10383
+ "additionalProperties": {
10384
+ "type": "string"
10385
+ },
10386
+ "default": {}
10387
+ },
10295
10388
  "statusCodes": {
10296
10389
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
10297
10390
  "anyOf": [
@@ -10354,6 +10447,13 @@
10354
10447
  "statusCodes": [
10355
10448
  200
10356
10449
  ]
10450
+ },
10451
+ {
10452
+ "url": "/health",
10453
+ "origin": "https://my-app.com",
10454
+ "params": {
10455
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
10456
+ }
10357
10457
  }
10358
10458
  ]
10359
10459
  }
@@ -12294,6 +12394,14 @@
12294
12394
  "trim"
12295
12395
  ]
12296
12396
  },
12397
+ "params": {
12398
+ "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.",
12399
+ "type": "object",
12400
+ "additionalProperties": {
12401
+ "type": "string"
12402
+ },
12403
+ "default": {}
12404
+ },
12297
12405
  "timeout": {
12298
12406
  "type": "integer",
12299
12407
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -12466,6 +12574,14 @@
12466
12574
  "trim"
12467
12575
  ]
12468
12576
  },
12577
+ "params": {
12578
+ "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.",
12579
+ "type": "object",
12580
+ "additionalProperties": {
12581
+ "type": "string"
12582
+ },
12583
+ "default": {}
12584
+ },
12469
12585
  "timeout": {
12470
12586
  "type": "integer",
12471
12587
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -12615,6 +12731,13 @@
12615
12731
  "url": "/search",
12616
12732
  "origin": "https://www.google.com"
12617
12733
  },
12734
+ {
12735
+ "url": "/dashboard",
12736
+ "origin": "https://my-app.com",
12737
+ "params": {
12738
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
12739
+ }
12740
+ },
12618
12741
  {
12619
12742
  "url": "https://www.example.com",
12620
12743
  "waitUntil": {
@@ -17949,6 +18072,12 @@
17949
18072
  "html"
17950
18073
  ]
17951
18074
  },
18075
+ {
18076
+ "origin": "https://my-app.com",
18077
+ "originParams": {
18078
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
18079
+ }
18080
+ },
17952
18081
  {
17953
18082
  "fileTypes": [
17954
18083
  {
@@ -20314,6 +20443,14 @@
20314
20443
  "trim"
20315
20444
  ]
20316
20445
  },
20446
+ "params": {
20447
+ "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.",
20448
+ "type": "object",
20449
+ "additionalProperties": {
20450
+ "type": "string"
20451
+ },
20452
+ "default": {}
20453
+ },
20317
20454
  "timeout": {
20318
20455
  "type": "integer",
20319
20456
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -20486,6 +20623,14 @@
20486
20623
  "trim"
20487
20624
  ]
20488
20625
  },
20626
+ "params": {
20627
+ "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.",
20628
+ "type": "object",
20629
+ "additionalProperties": {
20630
+ "type": "string"
20631
+ },
20632
+ "default": {}
20633
+ },
20489
20634
  "timeout": {
20490
20635
  "type": "integer",
20491
20636
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -20635,6 +20780,13 @@
20635
20780
  "url": "/search",
20636
20781
  "origin": "https://www.google.com"
20637
20782
  },
20783
+ {
20784
+ "url": "/dashboard",
20785
+ "origin": "https://my-app.com",
20786
+ "params": {
20787
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
20788
+ }
20789
+ },
20638
20790
  {
20639
20791
  "url": "https://www.example.com",
20640
20792
  "waitUntil": {
@@ -22294,6 +22446,14 @@
22294
22446
  "description": "Default protocol and domain to use for relative URLs.",
22295
22447
  "type": "string"
22296
22448
  },
22449
+ "originParams": {
22450
+ "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 — avoid putting long-lived secrets here.",
22451
+ "type": "object",
22452
+ "additionalProperties": {
22453
+ "type": "string"
22454
+ },
22455
+ "default": {}
22456
+ },
22297
22457
  "beforeAny": {
22298
22458
  "description": "Path(s) to test specifications to perform before those specified by `input`. Useful for setting up testing environments.",
22299
22459
  "anyOf": [
@@ -23308,6 +23468,14 @@
23308
23468
  "trim"
23309
23469
  ]
23310
23470
  },
23471
+ "params": {
23472
+ "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.",
23473
+ "type": "object",
23474
+ "additionalProperties": {
23475
+ "type": "string"
23476
+ },
23477
+ "default": {}
23478
+ },
23311
23479
  "statusCodes": {
23312
23480
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
23313
23481
  "anyOf": [
@@ -23391,6 +23559,14 @@
23391
23559
  "trim"
23392
23560
  ]
23393
23561
  },
23562
+ "params": {
23563
+ "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.",
23564
+ "type": "object",
23565
+ "additionalProperties": {
23566
+ "type": "string"
23567
+ },
23568
+ "default": {}
23569
+ },
23394
23570
  "statusCodes": {
23395
23571
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
23396
23572
  "anyOf": [
@@ -23453,6 +23629,13 @@
23453
23629
  "statusCodes": [
23454
23630
  200
23455
23631
  ]
23632
+ },
23633
+ {
23634
+ "url": "/health",
23635
+ "origin": "https://my-app.com",
23636
+ "params": {
23637
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
23638
+ }
23456
23639
  }
23457
23640
  ]
23458
23641
  }
@@ -25393,6 +25576,14 @@
25393
25576
  "trim"
25394
25577
  ]
25395
25578
  },
25579
+ "params": {
25580
+ "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.",
25581
+ "type": "object",
25582
+ "additionalProperties": {
25583
+ "type": "string"
25584
+ },
25585
+ "default": {}
25586
+ },
25396
25587
  "timeout": {
25397
25588
  "type": "integer",
25398
25589
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -25565,6 +25756,14 @@
25565
25756
  "trim"
25566
25757
  ]
25567
25758
  },
25759
+ "params": {
25760
+ "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.",
25761
+ "type": "object",
25762
+ "additionalProperties": {
25763
+ "type": "string"
25764
+ },
25765
+ "default": {}
25766
+ },
25568
25767
  "timeout": {
25569
25768
  "type": "integer",
25570
25769
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -25714,6 +25913,13 @@
25714
25913
  "url": "/search",
25715
25914
  "origin": "https://www.google.com"
25716
25915
  },
25916
+ {
25917
+ "url": "/dashboard",
25918
+ "origin": "https://my-app.com",
25919
+ "params": {
25920
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
25921
+ }
25922
+ },
25717
25923
  {
25718
25924
  "url": "https://www.example.com",
25719
25925
  "waitUntil": {
@@ -31977,6 +32183,14 @@
31977
32183
  "trim"
31978
32184
  ]
31979
32185
  },
32186
+ "params": {
32187
+ "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.",
32188
+ "type": "object",
32189
+ "additionalProperties": {
32190
+ "type": "string"
32191
+ },
32192
+ "default": {}
32193
+ },
31980
32194
  "statusCodes": {
31981
32195
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
31982
32196
  "anyOf": [
@@ -32060,6 +32274,14 @@
32060
32274
  "trim"
32061
32275
  ]
32062
32276
  },
32277
+ "params": {
32278
+ "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.",
32279
+ "type": "object",
32280
+ "additionalProperties": {
32281
+ "type": "string"
32282
+ },
32283
+ "default": {}
32284
+ },
32063
32285
  "statusCodes": {
32064
32286
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
32065
32287
  "anyOf": [
@@ -32122,6 +32344,13 @@
32122
32344
  "statusCodes": [
32123
32345
  200
32124
32346
  ]
32347
+ },
32348
+ {
32349
+ "url": "/health",
32350
+ "origin": "https://my-app.com",
32351
+ "params": {
32352
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
32353
+ }
32125
32354
  }
32126
32355
  ]
32127
32356
  }
@@ -34062,6 +34291,14 @@
34062
34291
  "trim"
34063
34292
  ]
34064
34293
  },
34294
+ "params": {
34295
+ "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.",
34296
+ "type": "object",
34297
+ "additionalProperties": {
34298
+ "type": "string"
34299
+ },
34300
+ "default": {}
34301
+ },
34065
34302
  "timeout": {
34066
34303
  "type": "integer",
34067
34304
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -34234,6 +34471,14 @@
34234
34471
  "trim"
34235
34472
  ]
34236
34473
  },
34474
+ "params": {
34475
+ "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.",
34476
+ "type": "object",
34477
+ "additionalProperties": {
34478
+ "type": "string"
34479
+ },
34480
+ "default": {}
34481
+ },
34237
34482
  "timeout": {
34238
34483
  "type": "integer",
34239
34484
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -34383,6 +34628,13 @@
34383
34628
  "url": "/search",
34384
34629
  "origin": "https://www.google.com"
34385
34630
  },
34631
+ {
34632
+ "url": "/dashboard",
34633
+ "origin": "https://my-app.com",
34634
+ "params": {
34635
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
34636
+ }
34637
+ },
34386
34638
  {
34387
34639
  "url": "https://www.example.com",
34388
34640
  "waitUntil": {
@@ -39717,6 +39969,12 @@
39717
39969
  "html"
39718
39970
  ]
39719
39971
  },
39972
+ {
39973
+ "origin": "https://my-app.com",
39974
+ "originParams": {
39975
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
39976
+ }
39977
+ },
39720
39978
  {
39721
39979
  "fileTypes": [
39722
39980
  {
@@ -41340,6 +41598,14 @@
41340
41598
  "trim"
41341
41599
  ]
41342
41600
  },
41601
+ "params": {
41602
+ "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.",
41603
+ "type": "object",
41604
+ "additionalProperties": {
41605
+ "type": "string"
41606
+ },
41607
+ "default": {}
41608
+ },
41343
41609
  "statusCodes": {
41344
41610
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
41345
41611
  "anyOf": [
@@ -41423,6 +41689,14 @@
41423
41689
  "trim"
41424
41690
  ]
41425
41691
  },
41692
+ "params": {
41693
+ "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.",
41694
+ "type": "object",
41695
+ "additionalProperties": {
41696
+ "type": "string"
41697
+ },
41698
+ "default": {}
41699
+ },
41426
41700
  "statusCodes": {
41427
41701
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
41428
41702
  "anyOf": [
@@ -41485,6 +41759,13 @@
41485
41759
  "statusCodes": [
41486
41760
  200
41487
41761
  ]
41762
+ },
41763
+ {
41764
+ "url": "/health",
41765
+ "origin": "https://my-app.com",
41766
+ "params": {
41767
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
41768
+ }
41488
41769
  }
41489
41770
  ]
41490
41771
  }
@@ -43425,6 +43706,14 @@
43425
43706
  "trim"
43426
43707
  ]
43427
43708
  },
43709
+ "params": {
43710
+ "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.",
43711
+ "type": "object",
43712
+ "additionalProperties": {
43713
+ "type": "string"
43714
+ },
43715
+ "default": {}
43716
+ },
43428
43717
  "timeout": {
43429
43718
  "type": "integer",
43430
43719
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -43597,6 +43886,14 @@
43597
43886
  "trim"
43598
43887
  ]
43599
43888
  },
43889
+ "params": {
43890
+ "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.",
43891
+ "type": "object",
43892
+ "additionalProperties": {
43893
+ "type": "string"
43894
+ },
43895
+ "default": {}
43896
+ },
43600
43897
  "timeout": {
43601
43898
  "type": "integer",
43602
43899
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -43746,6 +44043,13 @@
43746
44043
  "url": "/search",
43747
44044
  "origin": "https://www.google.com"
43748
44045
  },
44046
+ {
44047
+ "url": "/dashboard",
44048
+ "origin": "https://my-app.com",
44049
+ "params": {
44050
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
44051
+ }
44052
+ },
43749
44053
  {
43750
44054
  "url": "https://www.example.com",
43751
44055
  "waitUntil": {
@@ -49483,6 +49787,14 @@
49483
49787
  "trim"
49484
49788
  ]
49485
49789
  },
49790
+ "params": {
49791
+ "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.",
49792
+ "type": "object",
49793
+ "additionalProperties": {
49794
+ "type": "string"
49795
+ },
49796
+ "default": {}
49797
+ },
49486
49798
  "statusCodes": {
49487
49799
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
49488
49800
  "anyOf": [
@@ -49566,6 +49878,14 @@
49566
49878
  "trim"
49567
49879
  ]
49568
49880
  },
49881
+ "params": {
49882
+ "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.",
49883
+ "type": "object",
49884
+ "additionalProperties": {
49885
+ "type": "string"
49886
+ },
49887
+ "default": {}
49888
+ },
49569
49889
  "statusCodes": {
49570
49890
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
49571
49891
  "anyOf": [
@@ -49628,6 +49948,13 @@
49628
49948
  "statusCodes": [
49629
49949
  200
49630
49950
  ]
49951
+ },
49952
+ {
49953
+ "url": "/health",
49954
+ "origin": "https://my-app.com",
49955
+ "params": {
49956
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
49957
+ }
49631
49958
  }
49632
49959
  ]
49633
49960
  }
@@ -51568,6 +51895,14 @@
51568
51895
  "trim"
51569
51896
  ]
51570
51897
  },
51898
+ "params": {
51899
+ "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.",
51900
+ "type": "object",
51901
+ "additionalProperties": {
51902
+ "type": "string"
51903
+ },
51904
+ "default": {}
51905
+ },
51571
51906
  "timeout": {
51572
51907
  "type": "integer",
51573
51908
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -51740,6 +52075,14 @@
51740
52075
  "trim"
51741
52076
  ]
51742
52077
  },
52078
+ "params": {
52079
+ "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.",
52080
+ "type": "object",
52081
+ "additionalProperties": {
52082
+ "type": "string"
52083
+ },
52084
+ "default": {}
52085
+ },
51743
52086
  "timeout": {
51744
52087
  "type": "integer",
51745
52088
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -51889,6 +52232,13 @@
51889
52232
  "url": "/search",
51890
52233
  "origin": "https://www.google.com"
51891
52234
  },
52235
+ {
52236
+ "url": "/dashboard",
52237
+ "origin": "https://my-app.com",
52238
+ "params": {
52239
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
52240
+ }
52241
+ },
51892
52242
  {
51893
52243
  "url": "https://www.example.com",
51894
52244
  "waitUntil": {
@@ -59336,6 +59686,14 @@
59336
59686
  "trim"
59337
59687
  ]
59338
59688
  },
59689
+ "params": {
59690
+ "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.",
59691
+ "type": "object",
59692
+ "additionalProperties": {
59693
+ "type": "string"
59694
+ },
59695
+ "default": {}
59696
+ },
59339
59697
  "statusCodes": {
59340
59698
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
59341
59699
  "anyOf": [
@@ -59419,6 +59777,14 @@
59419
59777
  "trim"
59420
59778
  ]
59421
59779
  },
59780
+ "params": {
59781
+ "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.",
59782
+ "type": "object",
59783
+ "additionalProperties": {
59784
+ "type": "string"
59785
+ },
59786
+ "default": {}
59787
+ },
59422
59788
  "statusCodes": {
59423
59789
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
59424
59790
  "anyOf": [
@@ -59481,6 +59847,13 @@
59481
59847
  "statusCodes": [
59482
59848
  200
59483
59849
  ]
59850
+ },
59851
+ {
59852
+ "url": "/health",
59853
+ "origin": "https://my-app.com",
59854
+ "params": {
59855
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
59856
+ }
59484
59857
  }
59485
59858
  ]
59486
59859
  }
@@ -61421,6 +61794,14 @@
61421
61794
  "trim"
61422
61795
  ]
61423
61796
  },
61797
+ "params": {
61798
+ "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.",
61799
+ "type": "object",
61800
+ "additionalProperties": {
61801
+ "type": "string"
61802
+ },
61803
+ "default": {}
61804
+ },
61424
61805
  "timeout": {
61425
61806
  "type": "integer",
61426
61807
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -61593,6 +61974,14 @@
61593
61974
  "trim"
61594
61975
  ]
61595
61976
  },
61977
+ "params": {
61978
+ "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.",
61979
+ "type": "object",
61980
+ "additionalProperties": {
61981
+ "type": "string"
61982
+ },
61983
+ "default": {}
61984
+ },
61596
61985
  "timeout": {
61597
61986
  "type": "integer",
61598
61987
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -61742,6 +62131,13 @@
61742
62131
  "url": "/search",
61743
62132
  "origin": "https://www.google.com"
61744
62133
  },
62134
+ {
62135
+ "url": "/dashboard",
62136
+ "origin": "https://my-app.com",
62137
+ "params": {
62138
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
62139
+ }
62140
+ },
61745
62141
  {
61746
62142
  "url": "https://www.example.com",
61747
62143
  "waitUntil": {
@@ -67479,6 +67875,14 @@
67479
67875
  "trim"
67480
67876
  ]
67481
67877
  },
67878
+ "params": {
67879
+ "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.",
67880
+ "type": "object",
67881
+ "additionalProperties": {
67882
+ "type": "string"
67883
+ },
67884
+ "default": {}
67885
+ },
67482
67886
  "statusCodes": {
67483
67887
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
67484
67888
  "anyOf": [
@@ -67562,6 +67966,14 @@
67562
67966
  "trim"
67563
67967
  ]
67564
67968
  },
67969
+ "params": {
67970
+ "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.",
67971
+ "type": "object",
67972
+ "additionalProperties": {
67973
+ "type": "string"
67974
+ },
67975
+ "default": {}
67976
+ },
67565
67977
  "statusCodes": {
67566
67978
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
67567
67979
  "anyOf": [
@@ -67624,6 +68036,13 @@
67624
68036
  "statusCodes": [
67625
68037
  200
67626
68038
  ]
68039
+ },
68040
+ {
68041
+ "url": "/health",
68042
+ "origin": "https://my-app.com",
68043
+ "params": {
68044
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
68045
+ }
67627
68046
  }
67628
68047
  ]
67629
68048
  }
@@ -69564,6 +69983,14 @@
69564
69983
  "trim"
69565
69984
  ]
69566
69985
  },
69986
+ "params": {
69987
+ "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.",
69988
+ "type": "object",
69989
+ "additionalProperties": {
69990
+ "type": "string"
69991
+ },
69992
+ "default": {}
69993
+ },
69567
69994
  "timeout": {
69568
69995
  "type": "integer",
69569
69996
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -69736,6 +70163,14 @@
69736
70163
  "trim"
69737
70164
  ]
69738
70165
  },
70166
+ "params": {
70167
+ "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.",
70168
+ "type": "object",
70169
+ "additionalProperties": {
70170
+ "type": "string"
70171
+ },
70172
+ "default": {}
70173
+ },
69739
70174
  "timeout": {
69740
70175
  "type": "integer",
69741
70176
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -69885,6 +70320,13 @@
69885
70320
  "url": "/search",
69886
70321
  "origin": "https://www.google.com"
69887
70322
  },
70323
+ {
70324
+ "url": "/dashboard",
70325
+ "origin": "https://my-app.com",
70326
+ "params": {
70327
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
70328
+ }
70329
+ },
69888
70330
  {
69889
70331
  "url": "https://www.example.com",
69890
70332
  "waitUntil": {
@@ -78720,6 +79162,14 @@
78720
79162
  "trim"
78721
79163
  ]
78722
79164
  },
79165
+ "params": {
79166
+ "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.",
79167
+ "type": "object",
79168
+ "additionalProperties": {
79169
+ "type": "string"
79170
+ },
79171
+ "default": {}
79172
+ },
78723
79173
  "statusCodes": {
78724
79174
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
78725
79175
  "anyOf": [
@@ -78803,6 +79253,14 @@
78803
79253
  "trim"
78804
79254
  ]
78805
79255
  },
79256
+ "params": {
79257
+ "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.",
79258
+ "type": "object",
79259
+ "additionalProperties": {
79260
+ "type": "string"
79261
+ },
79262
+ "default": {}
79263
+ },
78806
79264
  "statusCodes": {
78807
79265
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
78808
79266
  "anyOf": [
@@ -78865,6 +79323,13 @@
78865
79323
  "statusCodes": [
78866
79324
  200
78867
79325
  ]
79326
+ },
79327
+ {
79328
+ "url": "/health",
79329
+ "origin": "https://my-app.com",
79330
+ "params": {
79331
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
79332
+ }
78868
79333
  }
78869
79334
  ]
78870
79335
  }
@@ -80805,6 +81270,14 @@
80805
81270
  "trim"
80806
81271
  ]
80807
81272
  },
81273
+ "params": {
81274
+ "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.",
81275
+ "type": "object",
81276
+ "additionalProperties": {
81277
+ "type": "string"
81278
+ },
81279
+ "default": {}
81280
+ },
80808
81281
  "timeout": {
80809
81282
  "type": "integer",
80810
81283
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -80977,6 +81450,14 @@
80977
81450
  "trim"
80978
81451
  ]
80979
81452
  },
81453
+ "params": {
81454
+ "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.",
81455
+ "type": "object",
81456
+ "additionalProperties": {
81457
+ "type": "string"
81458
+ },
81459
+ "default": {}
81460
+ },
80980
81461
  "timeout": {
80981
81462
  "type": "integer",
80982
81463
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -81126,6 +81607,13 @@
81126
81607
  "url": "/search",
81127
81608
  "origin": "https://www.google.com"
81128
81609
  },
81610
+ {
81611
+ "url": "/dashboard",
81612
+ "origin": "https://my-app.com",
81613
+ "params": {
81614
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
81615
+ }
81616
+ },
81129
81617
  {
81130
81618
  "url": "https://www.example.com",
81131
81619
  "waitUntil": {
@@ -86863,6 +87351,14 @@
86863
87351
  "trim"
86864
87352
  ]
86865
87353
  },
87354
+ "params": {
87355
+ "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.",
87356
+ "type": "object",
87357
+ "additionalProperties": {
87358
+ "type": "string"
87359
+ },
87360
+ "default": {}
87361
+ },
86866
87362
  "statusCodes": {
86867
87363
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
86868
87364
  "anyOf": [
@@ -86946,6 +87442,14 @@
86946
87442
  "trim"
86947
87443
  ]
86948
87444
  },
87445
+ "params": {
87446
+ "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.",
87447
+ "type": "object",
87448
+ "additionalProperties": {
87449
+ "type": "string"
87450
+ },
87451
+ "default": {}
87452
+ },
86949
87453
  "statusCodes": {
86950
87454
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
86951
87455
  "anyOf": [
@@ -87008,6 +87512,13 @@
87008
87512
  "statusCodes": [
87009
87513
  200
87010
87514
  ]
87515
+ },
87516
+ {
87517
+ "url": "/health",
87518
+ "origin": "https://my-app.com",
87519
+ "params": {
87520
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
87521
+ }
87011
87522
  }
87012
87523
  ]
87013
87524
  }
@@ -88948,6 +89459,14 @@
88948
89459
  "trim"
88949
89460
  ]
88950
89461
  },
89462
+ "params": {
89463
+ "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.",
89464
+ "type": "object",
89465
+ "additionalProperties": {
89466
+ "type": "string"
89467
+ },
89468
+ "default": {}
89469
+ },
88951
89470
  "timeout": {
88952
89471
  "type": "integer",
88953
89472
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -89120,6 +89639,14 @@
89120
89639
  "trim"
89121
89640
  ]
89122
89641
  },
89642
+ "params": {
89643
+ "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.",
89644
+ "type": "object",
89645
+ "additionalProperties": {
89646
+ "type": "string"
89647
+ },
89648
+ "default": {}
89649
+ },
89123
89650
  "timeout": {
89124
89651
  "type": "integer",
89125
89652
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -89269,6 +89796,13 @@
89269
89796
  "url": "/search",
89270
89797
  "origin": "https://www.google.com"
89271
89798
  },
89799
+ {
89800
+ "url": "/dashboard",
89801
+ "origin": "https://my-app.com",
89802
+ "params": {
89803
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
89804
+ }
89805
+ },
89272
89806
  {
89273
89807
  "url": "https://www.example.com",
89274
89808
  "waitUntil": {
@@ -95286,6 +95820,14 @@
95286
95820
  "trim"
95287
95821
  ]
95288
95822
  },
95823
+ "params": {
95824
+ "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.",
95825
+ "type": "object",
95826
+ "additionalProperties": {
95827
+ "type": "string"
95828
+ },
95829
+ "default": {}
95830
+ },
95289
95831
  "statusCodes": {
95290
95832
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
95291
95833
  "anyOf": [
@@ -95369,6 +95911,14 @@
95369
95911
  "trim"
95370
95912
  ]
95371
95913
  },
95914
+ "params": {
95915
+ "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.",
95916
+ "type": "object",
95917
+ "additionalProperties": {
95918
+ "type": "string"
95919
+ },
95920
+ "default": {}
95921
+ },
95372
95922
  "statusCodes": {
95373
95923
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
95374
95924
  "anyOf": [
@@ -95431,6 +95981,13 @@
95431
95981
  "statusCodes": [
95432
95982
  200
95433
95983
  ]
95984
+ },
95985
+ {
95986
+ "url": "/health",
95987
+ "origin": "https://my-app.com",
95988
+ "params": {
95989
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
95990
+ }
95434
95991
  }
95435
95992
  ]
95436
95993
  }
@@ -97371,6 +97928,14 @@
97371
97928
  "trim"
97372
97929
  ]
97373
97930
  },
97931
+ "params": {
97932
+ "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.",
97933
+ "type": "object",
97934
+ "additionalProperties": {
97935
+ "type": "string"
97936
+ },
97937
+ "default": {}
97938
+ },
97374
97939
  "timeout": {
97375
97940
  "type": "integer",
97376
97941
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -97543,6 +98108,14 @@
97543
98108
  "trim"
97544
98109
  ]
97545
98110
  },
98111
+ "params": {
98112
+ "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.",
98113
+ "type": "object",
98114
+ "additionalProperties": {
98115
+ "type": "string"
98116
+ },
98117
+ "default": {}
98118
+ },
97546
98119
  "timeout": {
97547
98120
  "type": "integer",
97548
98121
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -97692,6 +98265,13 @@
97692
98265
  "url": "/search",
97693
98266
  "origin": "https://www.google.com"
97694
98267
  },
98268
+ {
98269
+ "url": "/dashboard",
98270
+ "origin": "https://my-app.com",
98271
+ "params": {
98272
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
98273
+ }
98274
+ },
97695
98275
  {
97696
98276
  "url": "https://www.example.com",
97697
98277
  "waitUntil": {
@@ -103782,6 +104362,14 @@
103782
104362
  "trim"
103783
104363
  ]
103784
104364
  },
104365
+ "params": {
104366
+ "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.",
104367
+ "type": "object",
104368
+ "additionalProperties": {
104369
+ "type": "string"
104370
+ },
104371
+ "default": {}
104372
+ },
103785
104373
  "statusCodes": {
103786
104374
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
103787
104375
  "anyOf": [
@@ -103865,6 +104453,14 @@
103865
104453
  "trim"
103866
104454
  ]
103867
104455
  },
104456
+ "params": {
104457
+ "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.",
104458
+ "type": "object",
104459
+ "additionalProperties": {
104460
+ "type": "string"
104461
+ },
104462
+ "default": {}
104463
+ },
103868
104464
  "statusCodes": {
103869
104465
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
103870
104466
  "anyOf": [
@@ -103927,6 +104523,13 @@
103927
104523
  "statusCodes": [
103928
104524
  200
103929
104525
  ]
104526
+ },
104527
+ {
104528
+ "url": "/health",
104529
+ "origin": "https://my-app.com",
104530
+ "params": {
104531
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
104532
+ }
103930
104533
  }
103931
104534
  ]
103932
104535
  }
@@ -105867,6 +106470,14 @@
105867
106470
  "trim"
105868
106471
  ]
105869
106472
  },
106473
+ "params": {
106474
+ "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.",
106475
+ "type": "object",
106476
+ "additionalProperties": {
106477
+ "type": "string"
106478
+ },
106479
+ "default": {}
106480
+ },
105870
106481
  "timeout": {
105871
106482
  "type": "integer",
105872
106483
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -106039,6 +106650,14 @@
106039
106650
  "trim"
106040
106651
  ]
106041
106652
  },
106653
+ "params": {
106654
+ "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.",
106655
+ "type": "object",
106656
+ "additionalProperties": {
106657
+ "type": "string"
106658
+ },
106659
+ "default": {}
106660
+ },
106042
106661
  "timeout": {
106043
106662
  "type": "integer",
106044
106663
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -106188,6 +106807,13 @@
106188
106807
  "url": "/search",
106189
106808
  "origin": "https://www.google.com"
106190
106809
  },
106810
+ {
106811
+ "url": "/dashboard",
106812
+ "origin": "https://my-app.com",
106813
+ "params": {
106814
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
106815
+ }
106816
+ },
106191
106817
  {
106192
106818
  "url": "https://www.example.com",
106193
106819
  "waitUntil": {
@@ -111925,6 +112551,14 @@
111925
112551
  "trim"
111926
112552
  ]
111927
112553
  },
112554
+ "params": {
112555
+ "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.",
112556
+ "type": "object",
112557
+ "additionalProperties": {
112558
+ "type": "string"
112559
+ },
112560
+ "default": {}
112561
+ },
111928
112562
  "statusCodes": {
111929
112563
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
111930
112564
  "anyOf": [
@@ -112008,6 +112642,14 @@
112008
112642
  "trim"
112009
112643
  ]
112010
112644
  },
112645
+ "params": {
112646
+ "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.",
112647
+ "type": "object",
112648
+ "additionalProperties": {
112649
+ "type": "string"
112650
+ },
112651
+ "default": {}
112652
+ },
112011
112653
  "statusCodes": {
112012
112654
  "description": "Accepted status codes. If the specified URL returns a code other than what is specified here, the action fails.",
112013
112655
  "anyOf": [
@@ -112070,6 +112712,13 @@
112070
112712
  "statusCodes": [
112071
112713
  200
112072
112714
  ]
112715
+ },
112716
+ {
112717
+ "url": "/health",
112718
+ "origin": "https://my-app.com",
112719
+ "params": {
112720
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
112721
+ }
112073
112722
  }
112074
112723
  ]
112075
112724
  }
@@ -114010,6 +114659,14 @@
114010
114659
  "trim"
114011
114660
  ]
114012
114661
  },
114662
+ "params": {
114663
+ "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.",
114664
+ "type": "object",
114665
+ "additionalProperties": {
114666
+ "type": "string"
114667
+ },
114668
+ "default": {}
114669
+ },
114013
114670
  "timeout": {
114014
114671
  "type": "integer",
114015
114672
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -114182,6 +114839,14 @@
114182
114839
  "trim"
114183
114840
  ]
114184
114841
  },
114842
+ "params": {
114843
+ "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.",
114844
+ "type": "object",
114845
+ "additionalProperties": {
114846
+ "type": "string"
114847
+ },
114848
+ "default": {}
114849
+ },
114185
114850
  "timeout": {
114186
114851
  "type": "integer",
114187
114852
  "description": "Maximum time in milliseconds to wait for the page to be ready. If exceeded, the goTo action fails.",
@@ -114331,6 +114996,13 @@
114331
114996
  "url": "/search",
114332
114997
  "origin": "https://www.google.com"
114333
114998
  },
114999
+ {
115000
+ "url": "/dashboard",
115001
+ "origin": "https://my-app.com",
115002
+ "params": {
115003
+ "__clerk_testing_token": "$CLERK_TESTING_TOKEN"
115004
+ }
115005
+ },
114334
115006
  {
114335
115007
  "url": "https://www.example.com",
114336
115008
  "waitUntil": {