diff --git a/common/src/enums/eventType.ts b/common/src/enums/eventType.ts index d6268aea..236e73c0 100644 --- a/common/src/enums/eventType.ts +++ b/common/src/enums/eventType.ts @@ -57,7 +57,6 @@ export enum EventType { Organization_DisabledSso = 1605, Organization_EnabledKeyConnector = 1606, Organization_DisabledKeyConnector = 1607, - Organization_SponsorshipsSynced = 1608, Policy_Updated = 1700, diff --git a/common/src/models/export/eventExport.ts b/common/src/models/export/eventExport.ts index 670c1b16..2ddba648 100644 --- a/common/src/models/export/eventExport.ts +++ b/common/src/models/export/eventExport.ts @@ -11,7 +11,6 @@ export class EventExport { date: string; ip: string; type: string; - installationId: string; constructor(event: EventView) { this.message = event.humanReadableMessage; @@ -23,6 +22,5 @@ export class EventExport { this.date = event.date; this.ip = event.ip; this.type = EventType[event.type]; - this.installationId = event.installationId; } } diff --git a/common/src/models/response/eventResponse.ts b/common/src/models/response/eventResponse.ts index 47e3d140..93e31955 100644 --- a/common/src/models/response/eventResponse.ts +++ b/common/src/models/response/eventResponse.ts @@ -19,7 +19,6 @@ export class EventResponse extends BaseResponse { date: string; deviceType: DeviceType; ipAddress: string; - installationId: string; constructor(response: any) { super(response); @@ -38,6 +37,5 @@ export class EventResponse extends BaseResponse { this.date = this.getResponseProperty("Date"); this.deviceType = this.getResponseProperty("DeviceType"); this.ipAddress = this.getResponseProperty("IpAddress"); - this.installationId = this.getResponseProperty("InstallationId"); } } diff --git a/common/src/models/view/eventView.ts b/common/src/models/view/eventView.ts index 56bf5c30..17339ecb 100644 --- a/common/src/models/view/eventView.ts +++ b/common/src/models/view/eventView.ts @@ -11,7 +11,6 @@ export class EventView { date: string; ip: string; type: EventType; - installationId: string; constructor(data: Required) { this.message = data.message; @@ -24,6 +23,5 @@ export class EventView { this.date = data.date; this.ip = data.ip; this.type = data.type; - this.installationId = data.installationId; } }