vessels 0.9.0 → 0.9.1
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.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4156,7 +4156,13 @@ var AgentActivitySchema = external_exports.object({
|
|
|
4156
4156
|
});
|
|
4157
4157
|
var CardFieldSchema = external_exports.object({
|
|
4158
4158
|
label: external_exports.string().min(1),
|
|
4159
|
-
value: external_exports.string()
|
|
4159
|
+
value: external_exports.string(),
|
|
4160
|
+
// Optional: render the value as a tappable link, deep-linking the human into
|
|
4161
|
+
// your own web UI (e.g. an admin tray). Rendered on full-size cards (surface /
|
|
4162
|
+
// pinned-card detail), not the compact vessel-list preview.
|
|
4163
|
+
url: external_exports.string().url().max(2048).optional(),
|
|
4164
|
+
// Optional colour hint — pure styling, no behaviour. 'default' === unset.
|
|
4165
|
+
tone: external_exports.enum(["default", "success", "warning", "danger"]).optional()
|
|
4160
4166
|
});
|
|
4161
4167
|
var CardSchema = external_exports.object({
|
|
4162
4168
|
// Optional: a glance-facts card under a surface takes its heading from the
|