@vtexlab/planner-contracts
Version:
Contracts to use in an Eventual-Driven Architecture (EDA)
17 lines (16 loc) • 547 B
TypeScript
import { Message } from "../../abstractions/message";
import { BaseData, IIntegrationEvent } from "../../utils/types";
export declare namespace plannerIntegrationEvent {
class ReleaseUpdated extends Message implements IIntegrationEvent {
ReleaseId: string;
Status: string;
WorkflowType: string;
WorkflowInstance: string;
constructor(data: BaseData & {
releaseId: string;
status: string;
workflowType: string;
workflowInstance: string;
});
}
}