@cyber-dash-tech/revela 0.15.1 → 0.15.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyber-dash-tech/revela",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "description": "OpenCode plugin that turns AI into an HTML slide deck generator",
5
5
  "type": "module",
6
6
  "main": "./index.ts",
@@ -28,6 +28,12 @@ export default tool({
28
28
  .describe("Optional remote image URL to download when sourcePath is not provided."),
29
29
  alt: tool.schema.string().optional().describe("Optional alt text for the image."),
30
30
  notes: tool.schema.string().optional().describe("Optional usage notes for future slide generation."),
31
+ provider: tool.schema.string().optional().describe("Optional source provider, e.g. wikimedia or clearbit-logo."),
32
+ sourcePageUrl: tool.schema.string().optional().describe("Optional source page URL distinct from the downloadable image URL."),
33
+ license: tool.schema.string().optional().describe("Optional source license label when known. Do not invent."),
34
+ attribution: tool.schema.string().optional().describe("Optional attribution text when known. Do not invent."),
35
+ width: tool.schema.number().optional().describe("Optional source image width in pixels."),
36
+ height: tool.schema.number().optional().describe("Optional source image height in pixels."),
31
37
  failureReason: tool.schema
32
38
  .string()
33
39
  .optional()