veryfront 0.1.428 → 0.1.430

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.428",
3
+ "version": "0.1.430",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "workspace": [
@@ -1,4 +1,3 @@
1
- import * as dntShim from "../../_dnt.shims.js";
2
1
  import { buildChatStreamChunkMessageMetadata, extractChatMessageMetadata, } from "../chat/chat-ui-message-helpers.js";
3
2
  import { getLastStreamStep } from "../chat/final-step-fallback.js";
4
3
  import { buildDetachedFallbackChunks, buildDetachedFallbackMessageState, buildFinalizedMessageFallbackChunks, buildFinalizedMessageState, } from "./hosted-finalized-message.js";
@@ -34,8 +33,8 @@ function createHostedChatExecutionCleanup(cleanup) {
34
33
  }
35
34
  function createDefaultHostedChatExecutionRootStreamWatchdog() {
36
35
  return createChatStreamWatchdog({
37
- setTimeoutFn: dntShim.dntGlobalThis.setTimeout,
38
- clearTimeoutFn: globalThis.clearTimeout,
36
+ setTimeoutFn: globalThis["setTimeout"],
37
+ clearTimeoutFn: globalThis["clearTimeout"],
39
38
  });
40
39
  }
41
40
  function traceHostedChatRuntimeStream(traceStream, operation) {
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.428";
1
+ export declare const VERSION = "0.1.430";
2
2
  //# sourceMappingURL=version-constant.d.ts.map
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.428";
3
+ export const VERSION = "0.1.430";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "veryfront",
3
- "version": "0.1.428",
3
+ "version": "0.1.430",
4
4
  "description": "The simplest way to build AI-powered apps",
5
5
  "keywords": [
6
6
  "react",
package/src/deno.js CHANGED
@@ -1,6 +1,6 @@
1
1
  export default {
2
2
  "name": "veryfront",
3
- "version": "0.1.428",
3
+ "version": "0.1.430",
4
4
  "license": "Apache-2.0",
5
5
  "nodeModulesDir": "auto",
6
6
  "workspace": [
@@ -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.setTimeout,
162
- clearTimeoutFn: globalThis.clearTimeout,
161
+ setTimeoutFn: dntShim.dntGlobalThis["setTimeout"],
162
+ clearTimeoutFn: globalThis["clearTimeout"],
163
163
  });
164
164
  }
165
165
 
@@ -1,3 +1,3 @@
1
1
  // Keep in sync with deno.json version.
2
2
  // scripts/release.ts updates this constant during releases.
3
- export const VERSION = "0.1.428";
3
+ export const VERSION = "0.1.430";