nectar/kinode/packages/homepage/api/homepage:sys-v0.wit

24 lines
693 B
Plaintext
Raw Normal View History

interface homepage {
2024-05-06 21:12:08 +03:00
/// The request format to add or remove an app from the homepage. You must have messaging
/// access to `homepage:homepage:sys` in order to perform this. Serialize using serde_json.
variant request {
2024-05-06 21:12:08 +03:00
/// the package and process name will come from request source.
/// the path will automatically have the process_id prepended.
/// the icon is a base64 encoded image.
add(add-request),
remove,
}
2024-05-07 02:48:23 +03:00
record add-request {
2024-05-06 21:12:08 +03:00
label: string,
2024-05-14 02:32:39 +03:00
icon: option<string>,
path: option<string>,
widget: option<string>,
2024-05-06 21:12:08 +03:00
}
}
world homepage-sys-v0 {
import homepage;
include process-v0;
}