From 543e490cca9619936ef07d54d7647e7e86688fd1 Mon Sep 17 00:00:00 2001 From: Sammy Date: Tue, 7 Jan 2025 16:43:03 -0500 Subject: [PATCH] fix: build issues --- src/resources/ApiKeys/ApiKeysInterfaces.ts | 32 +--------------------- 1 file changed, 1 insertion(+), 31 deletions(-) diff --git a/src/resources/ApiKeys/ApiKeysInterfaces.ts b/src/resources/ApiKeys/ApiKeysInterfaces.ts index 96c9deb0..b5198ed8 100644 --- a/src/resources/ApiKeys/ApiKeysInterfaces.ts +++ b/src/resources/ApiKeys/ApiKeysInterfaces.ts @@ -1,6 +1,5 @@ import {GranularResource, PrivilegeModel} from '../BaseInterfaces.js'; -import {ApiKeyExposureReportSeverity, ApiKeyReportCreationType, ApiKeyStatus} from '../Enums.js'; -import {UserModel} from '../Users/UserInterfaces.js'; +import {ApiKeyStatus,ApiKeyExposureReportSeverity,ApiKeyReportCreationType} from '../Enums.js'; export interface ApiKeyBaseModel extends GranularResource { /** @@ -216,32 +215,3 @@ interface ImpersonationRestrictionsModel { allowedUserIds: QueryAuthenticationModel[]; } -<<<<<<< Updated upstream -interface ExposureReport { - /** - * API Key logger id associated to the Exposure Report - */ - apiKeyLoggerId: string; - /** - * The severity of the exposure - */ - severity: ApiKeyExposureReportSeverity; - /** - * The reason behind the exposure report for a given API key - */ - reason: string; - /** - * The date the key should be deactivated - */ - deactivationDate: number; - /** - * The way the API key report has been created - */ - creationType: ApiKeyReportCreationType; - /** - * Represents the user that has created the report - */ - createdBy: UserModel; -} -======= ->>>>>>> Stashed changes