@agentiffai/design 1.5.4 → 1.5.6

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/index.d.cts CHANGED
@@ -303,6 +303,7 @@ interface WorkflowSandboxArtifactCard {
303
303
  title: string;
304
304
  eyebrow?: string;
305
305
  body: string;
306
+ imageUrl?: string;
306
307
  fields?: WorkflowSandboxArtifactField[];
307
308
  }
308
309
  interface WorkflowSandboxScenario {
package/dist/index.d.ts CHANGED
@@ -303,6 +303,7 @@ interface WorkflowSandboxArtifactCard {
303
303
  title: string;
304
304
  eyebrow?: string;
305
305
  body: string;
306
+ imageUrl?: string;
306
307
  fields?: WorkflowSandboxArtifactField[];
307
308
  }
308
309
  interface WorkflowSandboxScenario {
package/dist/index.js CHANGED
@@ -7536,6 +7536,7 @@ var WorkflowSandboxDemo = ({
7536
7536
  () => scenario.artifacts.map((artifact, index) => ({
7537
7537
  platform: platformFromArtifact(artifact, index),
7538
7538
  content: artifact.body,
7539
+ imageUrl: artifact.imageUrl,
7539
7540
  hashtags: hashtagsFromArtifact(artifact),
7540
7541
  characterCount: artifact.body.length,
7541
7542
  withinLimit: true,