fix(core): update

This commit is contained in:
2021-09-26 16:11:41 +02:00
parent cba5c17252
commit 615fb17baa
8 changed files with 18977 additions and 3152 deletions

22
ts/data/incident.ts Normal file
View 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
View File

@ -0,0 +1 @@
export * from './incident';