{"version":3,"sources":["src/app/store/incidents/incidents.actions.ts"],"sourcesContent":["import {\n IncidentEvent,\n IncidentSpec,\n IncidentStatuspageLinkOptions,\n} from 'src/app/models/incident';\nimport {\n CursorPaginationOptions,\n OffsetPaginationOptions,\n} from 'src/app/store/common/pagination';\nimport { ImpactTimings } from './incidents.service';\n\nexport class LoadIncidents {\n static readonly type = '[Incident] Load Incidents';\n constructor(\n public pagination: OffsetPaginationOptions,\n public query?: string\n ) {}\n}\n\nexport class LoadIncidentDetailsAction {\n static readonly type = '[Incident] Load Incident Details';\n constructor(\n public id: number,\n public eventPagination?: CursorPaginationOptions\n ) {}\n}\n\nexport class LoadIncidentRelatedAlertsAction {\n static readonly type = '[Incident] Load Incident Related Alerts';\n constructor(\n public id: number,\n public relatedAlertsPagination?: OffsetPaginationOptions\n ) {}\n}\n\nexport class CreateIncidentAction {\n static readonly type = '[Incident] Create Incident';\n constructor(public spec: IncidentSpec) {}\n}\n\nexport class DeleteIncidentAction {\n static readonly type = '[Incident] Delete Incident';\n constructor(public incidentId: number) {}\n}\n\nexport class IncidentCreatedAction {\n static readonly type = '[Incident] Incident Created';\n constructor(public incidentId: number) {}\n}\n\nexport class UpdateIncidentPriorityAction {\n static readonly type = '[Incident] Update Priority';\n constructor(\n public incidentId: number,\n public newPriorityId: string\n ) {}\n}\n\nexport class UpdateIncidentStateAction {\n static readonly type = '[Incident] Update State';\n constructor(\n public incidentId: number,\n public newStateId: string\n ) {}\n}\n\nexport class UpdateSelectedIncidentTitle {\n static readonly type = '[Incident] Update Title';\n constructor(public newTitle: string) {}\n}\n\nexport class UpdateSelectedIncidentSummary {\n static readonly type = '[Incident] Update Summary';\n constructor(public newSummary: string) {}\n}\n\nexport class UpdateSelectedIncidentPriority {\n static readonly type = '[Incident] Update Selected Incident Priority';\n constructor(public newPriorityId: string) {}\n}\n\nexport class UpdateSelectedIncidentState {\n static readonly type = '[Incident] Update Selected Incident State';\n constructor(public newStateId: string) {}\n}\n\nexport class UpdateSelectedIncidentServiceImpact {\n static readonly type = '[Incident] Update Service Impact';\n constructor(\n public service: number,\n public newImpactLinkId: string\n ) {}\n}\n\nexport class CreateIncidentCommunicationChannel {\n static readonly type = '[Incident] Create Communication Channel';\n constructor(\n public provider: string,\n public channelName: string\n ) {}\n}\n\nexport class LinkServiceToIncident {\n static readonly type = '[Incident] Link Service To Incident';\n constructor(public publicServiceId: number) {}\n}\n\nexport class UnLinkServiceFromIncident {\n static readonly type = '[Incident] UnLink Service From Incident';\n constructor(public publicServiceId: number) {}\n}\n\nexport class LinkStatuspageToIncident {\n static readonly type = '[Incident] Link Statuspage To Incident';\n constructor(\n public publicStatuspageId: number,\n public linkOptions: IncidentStatuspageLinkOptions\n ) {}\n}\n\nexport class UnlinkStatuspageFromIncident {\n static readonly type = '[Incident] Unlink Statuspage From Incident';\n constructor(public publicStatuspageId: number) {}\n}\n\nexport class UpdateStatuspageLinkImpactAction {\n static readonly type = '[Incident] Updating Statuspage Link Impact';\n constructor(\n public publicStatuspageId: number,\n public newSchemaImpactId: string | 'automatic'\n ) {}\n}\n\nexport class UpdateSelectedIncidentTiming {\n static readonly type = '[Incident] Update Impact Timing';\n constructor(\n public timing: ImpactTimings,\n public datetime: Date,\n public setNull = false\n ) {}\n}\n\nexport class AddCommentToIncidentAction {\n static readonly type = '[Incident] Add Comment';\n constructor(public comment: string) {}\n}\n\nexport class AssignResponderRoleAction {\n static readonly type = '[Incident] Assign Responder Role';\n constructor(\n public memberId: string,\n public roleId: string\n ) {}\n}\n\nexport class UnassignResponderRoleAction {\n static readonly type = '[Incident] Unassing Responder Role';\n constructor(\n public assignmentId: string,\n public roleId: string,\n public memberId: string\n ) {}\n}\n\nexport class IncidentTitleUpdatedEventAction {\n static readonly type = '[Event] Incident Title Updated';\n constructor(\n public incidentId: number,\n public newTitle: string\n ) {}\n}\n\nexport class AddIncidentEventAction {\n static readonly type = '[Event] Add Incident Event';\n constructor(\n public incidentId: number,\n public event: IncidentEvent\n ) {}\n}\n\nexport class LoadIncidentSchemasAction {\n static readonly type = '[Incident] Load Incident Schemas';\n}\n\nexport class LoadIncidentSchemaVersionAction {\n static readonly type = '[Incident] Load Incident Schema Version';\n constructor(public schemaVersionId: string) {}\n}\n\nexport class DeleteIncidentEventAction {\n static readonly type = '[Event] Delete Incident Event';\n constructor(public eventId: string) {}\n}\n"],"names":["LoadIncidents","type","constructor","pagination","query","LoadIncidentDetailsAction","id","eventPagination","LoadIncidentRelatedAlertsAction","relatedAlertsPagination","CreateIncidentAction","spec","DeleteIncidentAction","incidentId","IncidentCreatedAction","UpdateIncidentPriorityAction","newPriorityId","UpdateIncidentStateAction","newStateId","UpdateSelectedIncidentTitle","newTitle","UpdateSelectedIncidentSummary","newSummary","UpdateSelectedIncidentPriority","UpdateSelectedIncidentState","UpdateSelectedIncidentServiceImpact","service","newImpactLinkId","LinkServiceToIncident","type","constructor","publicServiceId","UnLinkServiceFromIncident","LinkStatuspageToIncident","publicStatuspageId","linkOptions","UnlinkStatuspageFromIncident","UpdateStatuspageLinkImpactAction","newSchemaImpactId","UpdateSelectedIncidentTiming","timing","datetime","setNull","AddCommentToIncidentAction","comment","AssignResponderRoleAction","memberId","roleId","UnassignResponderRoleAction","assignmentId","AddIncidentEventAction","type","constructor","incidentId","event","LoadIncidentSchemasAction","LoadIncidentSchemaVersionAction","schemaVersionId","DeleteIncidentEventAction","eventId"],"mappings":"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","debug_id":"04a7d8cb-19f7-543d-83f8-61d0d910ecff"}