mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-16 22:20:51 +01:00
- Updated @haexhub/sdk dependency from 1.9.7 to 1.9.10 - Imported HAEXTENSION_METHODS and HAEXTENSION_EVENTS from SDK - Updated all handler files to use new nested method constants - Updated extensionMessageHandler to route using constants - Changed application.open routing in web handler - All method names now use haextension:subject:action schema
11 lines
520 B
TypeScript
11 lines
520 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { DbAction } from "./DbAction";
|
|
import type { FsAction } from "./FsAction";
|
|
import type { ShellAction } from "./ShellAction";
|
|
import type { WebAction } from "./WebAction";
|
|
|
|
/**
|
|
* Ein typsicherer Container, der die spezifische Aktion für einen Ressourcentyp enthält.
|
|
*/
|
|
export type Action = { "Database": DbAction } | { "Filesystem": FsAction } | { "Web": WebAction } | { "Shell": ShellAction };
|