@trigger.dev/core 2.3.6 → 2.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1590,7 +1590,9 @@ function urlWithSearchParams(url, params) {
1590
1590
  }
1591
1591
  const urlObj = new URL(url);
1592
1592
  for (const [key, value] of Object.entries(params)) {
1593
- urlObj.searchParams.append(key, String(value));
1593
+ if (value !== void 0) {
1594
+ urlObj.searchParams.append(key, String(value));
1595
+ }
1594
1596
  }
1595
1597
  return urlObj.toString();
1596
1598
  }