@getcatalystiq/agent-plane-ui 0.1.26 → 0.1.27

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.
@@ -1,11 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var chunk6ZXDZUQU_cjs = require('./chunk-6ZXDZUQU.cjs');
3
+ var chunk7EBIKKRM_cjs = require('./chunk-7EBIKKRM.cjs');
4
4
  require('./chunk-XXF4U7WL.cjs');
5
5
 
6
6
 
7
7
 
8
8
  Object.defineProperty(exports, "AgentIdentityTab", {
9
9
  enumerable: true,
10
- get: function () { return chunk6ZXDZUQU_cjs.AgentIdentityTab; }
10
+ get: function () { return chunk7EBIKKRM_cjs.AgentIdentityTab; }
11
11
  });
@@ -0,0 +1,2 @@
1
+ export { AgentIdentityTab } from './chunk-UMNJ5SV6.js';
2
+ import './chunk-XFI227OB.js';
@@ -106,7 +106,8 @@ function AgentIdentityTab({
106
106
  try {
107
107
  const data = await onExportSoul();
108
108
  const slug = (data.name || "soulspec").toLowerCase().replace(/[^a-z0-9]+/g, "-");
109
- const blob = new Blob([JSON.stringify(data, null, 2)], {
109
+ const exportPayload = data.manifest ? { manifest: data.manifest, files: data.files } : { files: data.files };
110
+ const blob = new Blob([JSON.stringify(exportPayload, null, 2)], {
110
111
  type: "application/json"
111
112
  });
112
113
  const url = URL.createObjectURL(blob);
@@ -104,7 +104,8 @@ function AgentIdentityTab({
104
104
  try {
105
105
  const data = await onExportSoul();
106
106
  const slug = (data.name || "soulspec").toLowerCase().replace(/[^a-z0-9]+/g, "-");
107
- const blob = new Blob([JSON.stringify(data, null, 2)], {
107
+ const exportPayload = data.manifest ? { manifest: data.manifest, files: data.files } : { files: data.files };
108
+ const blob = new Blob([JSON.stringify(exportPayload, null, 2)], {
108
109
  type: "application/json"
109
110
  });
110
111
  const url = URL.createObjectURL(blob);
package/dist/editor.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var chunkVZ43ATC5_cjs = require('./chunk-VZ43ATC5.cjs');
4
- var chunk6ZXDZUQU_cjs = require('./chunk-6ZXDZUQU.cjs');
4
+ var chunk7EBIKKRM_cjs = require('./chunk-7EBIKKRM.cjs');
5
5
  var chunkXXF4U7WL_cjs = require('./chunk-XXF4U7WL.cjs');
6
6
  var react = require('react');
7
7
  var CodeMirror = require('@uiw/react-codemirror');
@@ -187,6 +187,6 @@ Object.defineProperty(exports, "FileTreeEditor", {
187
187
  });
188
188
  Object.defineProperty(exports, "AgentIdentityTab", {
189
189
  enumerable: true,
190
- get: function () { return chunk6ZXDZUQU_cjs.AgentIdentityTab; }
190
+ get: function () { return chunk7EBIKKRM_cjs.AgentIdentityTab; }
191
191
  });
192
192
  exports.PluginEditorPage = PluginEditorPage;
package/dist/editor.d.cts CHANGED
@@ -67,8 +67,9 @@ interface AgentIdentityTabProps {
67
67
  onImportSoul?: (ref: string) => Promise<{
68
68
  files: Record<string, string>;
69
69
  }>;
70
- /** Export the current SoulSpec as JSON. Returns file map + agent name. */
70
+ /** Export the current SoulSpec as JSON. Returns manifest + file map + agent name. */
71
71
  onExportSoul?: () => Promise<{
72
+ manifest?: Record<string, unknown>;
72
73
  files: Record<string, string>;
73
74
  name: string;
74
75
  }>;
package/dist/editor.d.ts CHANGED
@@ -67,8 +67,9 @@ interface AgentIdentityTabProps {
67
67
  onImportSoul?: (ref: string) => Promise<{
68
68
  files: Record<string, string>;
69
69
  }>;
70
- /** Export the current SoulSpec as JSON. Returns file map + agent name. */
70
+ /** Export the current SoulSpec as JSON. Returns manifest + file map + agent name. */
71
71
  onExportSoul?: () => Promise<{
72
+ manifest?: Record<string, unknown>;
72
73
  files: Record<string, string>;
73
74
  name: string;
74
75
  }>;
package/dist/editor.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { useApi, Skeleton, FileTreeEditor, Card, CardHeader, CardTitle, CardContent } from './chunk-CE2RHDPY.js';
2
2
  export { FileTreeEditor } from './chunk-CE2RHDPY.js';
3
- export { AgentIdentityTab } from './chunk-NMZ2XKKV.js';
3
+ export { AgentIdentityTab } from './chunk-UMNJ5SV6.js';
4
4
  import { useNavigation, useAgentPlaneClient, Badge, Button } from './chunk-XFI227OB.js';
5
5
  import { useState, useCallback } from 'react';
6
6
  import CodeMirror from '@uiw/react-codemirror';
package/dist/index.cjs CHANGED
@@ -4069,7 +4069,7 @@ function AgentA2aInfo({
4069
4069
  ] })
4070
4070
  ] });
4071
4071
  }
4072
- var AgentIdentityTab = React.lazy(() => import('./agent-identity-tab-DA4LZVH6.cjs').then((m) => ({ default: m.AgentIdentityTab })));
4072
+ var AgentIdentityTab = React.lazy(() => import('./agent-identity-tab-HADOCEAN.cjs').then((m) => ({ default: m.AgentIdentityTab })));
4073
4073
  function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adminApiKey }) {
4074
4074
  const { LinkComponent, basePath } = chunkXXF4U7WL_cjs.useNavigation();
4075
4075
  const { mutate } = swr.useSWRConfig();
@@ -4114,7 +4114,7 @@ function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adm
4114
4114
  },
4115
4115
  onExportSoul: async () => {
4116
4116
  const result = await adminFetch(`/api/agents/${agentId}/export-soul`);
4117
- return { files: result.files, name: agent?.name ?? "agent" };
4117
+ return { manifest: result.manifest, files: result.files, name: result.manifest?.name ?? agent?.name ?? "agent" };
4118
4118
  },
4119
4119
  onPublishSoul: async (owner) => {
4120
4120
  await adminFetch(`/api/agents/${agentId}/publish-soul`, {
package/dist/index.js CHANGED
@@ -4045,7 +4045,7 @@ function AgentA2aInfo({
4045
4045
  ] })
4046
4046
  ] });
4047
4047
  }
4048
- var AgentIdentityTab = lazy(() => import('./agent-identity-tab-HLNJY2GH.js').then((m) => ({ default: m.AgentIdentityTab })));
4048
+ var AgentIdentityTab = lazy(() => import('./agent-identity-tab-LROKQ7HM.js').then((m) => ({ default: m.AgentIdentityTab })));
4049
4049
  function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adminApiKey }) {
4050
4050
  const { LinkComponent, basePath } = useNavigation();
4051
4051
  const { mutate } = useSWRConfig();
@@ -4090,7 +4090,7 @@ function AgentDetailPage({ agentId, a2aBaseUrl, tenantSlug, adminApiBaseUrl, adm
4090
4090
  },
4091
4091
  onExportSoul: async () => {
4092
4092
  const result = await adminFetch(`/api/agents/${agentId}/export-soul`);
4093
- return { files: result.files, name: agent?.name ?? "agent" };
4093
+ return { manifest: result.manifest, files: result.files, name: result.manifest?.name ?? agent?.name ?? "agent" };
4094
4094
  },
4095
4095
  onPublishSoul: async (owner) => {
4096
4096
  await adminFetch(`/api/agents/${agentId}/publish-soul`, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getcatalystiq/agent-plane-ui",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Embeddable React component library for AgentPlane",
5
5
  "type": "module",
6
6
  "exports": {
@@ -1,2 +0,0 @@
1
- export { AgentIdentityTab } from './chunk-NMZ2XKKV.js';
2
- import './chunk-XFI227OB.js';