@heroui/agent 0.2.0-beta.2 → 0.2.0-beta.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0-beta.3
4
+
5
+ - Move comprehensive Agent checks to pull requests so releases only validate versions, build,
6
+ package, publish, and verify `@heroui/agent`.
7
+ - Publish the package tarball directly without rebuilding unrelated applications, including the
8
+ Next.js demo.
9
+ - Retry npm registry and dist-tag verification while newly published versions propagate.
10
+
3
11
  ## 0.2.0-beta.2
4
12
 
5
13
  - Expand data visualization with candlestick, vertical and horizontal funnel, radial and linear
@@ -512,7 +512,7 @@ var embedRuntimePromise;
512
512
  function loadEmbedRuntime() {
513
513
  embedRuntimePromise ??= import(
514
514
  /* webpackPrefetch: true */
515
- "./embed-runtime-QOATFAS7.js"
515
+ "./embed-runtime-O57PH7EP.js"
516
516
  ).then(
517
517
  (module) => module.default
518
518
  );
@@ -1345,7 +1345,7 @@ declare function signTrustedAgentClientData(secret: string, data: TrustedAgentCl
1345
1345
  declare function verifyTrustedAgentClientData(secret: string, value: unknown): Promise<TrustedAgentClientData | null>;
1346
1346
 
1347
1347
  declare const HEROUI_AGENT_PROTOCOL_VERSION: 5;
1348
- declare const HEROUI_AGENT_SDK_VERSION: "0.2.0-beta.2";
1348
+ declare const HEROUI_AGENT_SDK_VERSION: "0.2.0-beta.3";
1349
1349
  declare const HEROUI_AGENT_TASK_ID: "heroui-agents-runtime";
1350
1350
  declare const TRUSTED_AGENT_CLIENT_DATA_KEY: "__heroUiAgentApi";
1351
1351
 
package/dist/contracts.js CHANGED
@@ -2184,7 +2184,7 @@ var agentModelIdSchema = z3.preprocess(
2184
2184
 
2185
2185
  // src/contracts/version.ts
2186
2186
  var HEROUI_AGENT_PROTOCOL_VERSION = 5;
2187
- var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.2";
2187
+ var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.3";
2188
2188
  var HEROUI_AGENT_TASK_ID = "heroui-agents-runtime";
2189
2189
  var TRUSTED_AGENT_CLIENT_DATA_KEY = "__heroUiAgentApi";
2190
2190
 
@@ -1778,7 +1778,7 @@ var agentModelIdSchema = z2.preprocess(
1778
1778
 
1779
1779
  // src/contracts/version.ts
1780
1780
  var HEROUI_AGENT_PROTOCOL_VERSION = 5;
1781
- var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.2";
1781
+ var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.3";
1782
1782
  var HEROUI_AGENT_TASK_ID = "heroui-agents-runtime";
1783
1783
 
1784
1784
  // src/contracts/identity.ts
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  HeroUIAgent,
3
3
  useAgent
4
- } from "./chunk-Y6Y6ILXP.js";
4
+ } from "./chunk-5FDSKYU6.js";
5
5
  import {
6
6
  AGENT_DESIGN_THEMES,
7
7
  AGENT_MODEL_IDS,
package/dist/next.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  HeroUIAgent,
3
3
  useAgent
4
- } from "./chunk-Y6Y6ILXP.js";
4
+ } from "./chunk-5FDSKYU6.js";
5
5
  import {
6
6
  AGENT_MODEL_IDS,
7
7
  AGENT_MODEL_OPTIONS,
package/dist/server.js CHANGED
@@ -66,7 +66,7 @@ var agentModelIdSchema = z2.preprocess(
66
66
 
67
67
  // src/contracts/version.ts
68
68
  var HEROUI_AGENT_PROTOCOL_VERSION = 5;
69
- var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.2";
69
+ var HEROUI_AGENT_SDK_VERSION = "0.2.0-beta.3";
70
70
 
71
71
  // src/contracts/identity.ts
72
72
  var agentThemeSchema = z3.enum(["light", "dark", "system"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroui/agent",
3
- "version": "0.2.0-beta.2",
3
+ "version": "0.2.0-beta.3",
4
4
  "description": "Embed a hosted HeroUI Agent that turns application data into interactive UI.",
5
5
  "homepage": "https://www.heroui.com/agents",
6
6
  "bugs": {
@@ -109,8 +109,8 @@
109
109
  "tsup": "8.5.0",
110
110
  "typescript": "5.9.3",
111
111
  "vitest": "4.1.0",
112
- "@heroui-pro/config": "0.0.0",
113
112
  "@heroui-pro/react": "1.0.0-beta.7",
113
+ "@heroui-pro/config": "0.0.0",
114
114
  "@heroui/agent-client": "0.0.0",
115
115
  "@heroui/agent-ui": "0.0.0"
116
116
  },