veryfront 0.1.428 → 0.1.429
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/esm/deno.js +1 -1
- package/esm/src/agent/hosted-chat-execution-runtime.js +2 -2
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/agent/hosted-chat-execution-runtime.ts +2 -2
- package/src/src/utils/version-constant.ts +1 -1
package/esm/deno.js
CHANGED
|
@@ -34,8 +34,8 @@ function createHostedChatExecutionCleanup(cleanup) {
|
|
|
34
34
|
}
|
|
35
35
|
function createDefaultHostedChatExecutionRootStreamWatchdog() {
|
|
36
36
|
return createChatStreamWatchdog({
|
|
37
|
-
setTimeoutFn: dntShim.dntGlobalThis
|
|
38
|
-
clearTimeoutFn: globalThis
|
|
37
|
+
setTimeoutFn: dntShim.dntGlobalThis["setTimeout"],
|
|
38
|
+
clearTimeoutFn: globalThis["clearTimeout"],
|
|
39
39
|
});
|
|
40
40
|
}
|
|
41
41
|
function traceHostedChatRuntimeStream(traceStream, operation) {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.429";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
|
@@ -158,8 +158,8 @@ function createHostedChatExecutionCleanup(cleanup: () => Promise<void>): () => P
|
|
|
158
158
|
|
|
159
159
|
function createDefaultHostedChatExecutionRootStreamWatchdog(): HostedChatExecutionRootStreamWatchdog {
|
|
160
160
|
return createChatStreamWatchdog({
|
|
161
|
-
setTimeoutFn: dntShim.dntGlobalThis
|
|
162
|
-
clearTimeoutFn: globalThis
|
|
161
|
+
setTimeoutFn: dntShim.dntGlobalThis["setTimeout"],
|
|
162
|
+
clearTimeoutFn: globalThis["clearTimeout"],
|
|
163
163
|
});
|
|
164
164
|
}
|
|
165
165
|
|