@trigger.dev/sdk 0.0.0-cross-runtime-20231201165945 → 0.0.0-cross-runtime-20231204083620
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 +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -2397,10 +2397,12 @@ async function zodfetchWithVersions(versionedSchemaMap, unversionedSchema, url,
|
|
|
2397
2397
|
__name(zodfetchWithVersions, "zodfetchWithVersions");
|
|
2398
2398
|
function requestInitWithCache(requestInit) {
|
|
2399
2399
|
try {
|
|
2400
|
-
|
|
2400
|
+
const withCache = {
|
|
2401
2401
|
...requestInit,
|
|
2402
2402
|
cache: "no-cache"
|
|
2403
2403
|
};
|
|
2404
|
+
const _ = new Request("http://localhost", withCache);
|
|
2405
|
+
return withCache;
|
|
2404
2406
|
} catch (error) {
|
|
2405
2407
|
return requestInit ?? {};
|
|
2406
2408
|
}
|
|
@@ -3008,7 +3010,7 @@ var DynamicSchedule = _DynamicSchedule;
|
|
|
3008
3010
|
var import_node_events = __toESM(require("node:events"));
|
|
3009
3011
|
|
|
3010
3012
|
// package.json
|
|
3011
|
-
var version = "0.0.0-cross-runtime-
|
|
3013
|
+
var version = "0.0.0-cross-runtime-20231204083620";
|
|
3012
3014
|
|
|
3013
3015
|
// src/concurrencyLimit.ts
|
|
3014
3016
|
var _ConcurrencyLimit = class _ConcurrencyLimit {
|