@mediarithmics/plugins-nodejs-sdk
Version:
This is the mediarithmics nodejs to help plugin developers bootstrapping their plugin without having to deal with most of the plugin boilerplate
28 lines (23 loc) • 586 B
text/typescript
import { DataResponse } from '../../api/core/common/Response';
export type CustomActionResponse = DataResponse<CustomAction>;
export interface CustomActionRequest {
user_point_id: string;
custom_action_id: string;
datamart_id: string;
node_id: string;
scenario_id: string;
}
export interface CustomActionPluginResponse {
status: 'ok' | 'ko';
}
export interface CustomAction {
id: string;
name: string;
organisation_id: string;
group_id: string;
artifact_id: string;
creation_ts: number;
created_by: string;
version_id: string;
version_value: string;
}