fix(core): update
This commit is contained in:
22
ts/data/incident.ts
Normal file
22
ts/data/incident.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import * as plugins from '../ul-interfaces.plugins';
|
||||
|
||||
export interface IIncident {
|
||||
timestamp: number;
|
||||
firstResponseTimestamp?: number;
|
||||
/**
|
||||
* indicates
|
||||
*/
|
||||
status: 'discovered' | 'investigating' | 'fixing' | 'fixImplemented' | 'watching' | 'resolved';
|
||||
creationMode: 'monitor' | 'manual';
|
||||
assignedUserId?: string;
|
||||
postMortemLink?: string;
|
||||
|
||||
updates: {
|
||||
markdownText: string;
|
||||
type: 'comment' | 'manualUpdate' | 'automaticUpdate'
|
||||
}[];
|
||||
|
||||
justForLooks: {
|
||||
isoTimestamp: string;
|
||||
}
|
||||
}
|
1
ts/data/index.ts
Normal file
1
ts/data/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from './incident';
|
Reference in New Issue
Block a user