ai 7.0.10 → 7.0.11
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/internal/index.js
CHANGED
|
@@ -83,7 +83,7 @@ import {
|
|
|
83
83
|
} from "@ai-sdk/provider-utils";
|
|
84
84
|
|
|
85
85
|
// src/version.ts
|
|
86
|
-
var VERSION = true ? "7.0.
|
|
86
|
+
var VERSION = true ? "7.0.11" : "0.0.0-test";
|
|
87
87
|
|
|
88
88
|
// src/util/download/download.ts
|
|
89
89
|
var download = async ({
|
|
@@ -2303,10 +2303,9 @@ async function loadDiagnosticsChannel() {
|
|
|
2303
2303
|
return void 0;
|
|
2304
2304
|
}
|
|
2305
2305
|
if (diagnosticsChannelPromise == null) {
|
|
2306
|
-
diagnosticsChannelPromise =
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
).catch(() => void 0);
|
|
2306
|
+
diagnosticsChannelPromise = Promise.resolve(
|
|
2307
|
+
loadBuiltinModule("node:diagnostics_channel")
|
|
2308
|
+
);
|
|
2310
2309
|
}
|
|
2311
2310
|
return diagnosticsChannelPromise;
|
|
2312
2311
|
}
|