Skip to content

Commit

Permalink
fix: build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
schaoukicoveo committed Jan 7, 2025
1 parent 285ac64 commit 543e490
Showing 1 changed file with 1 addition and 31 deletions.
32 changes: 1 addition & 31 deletions src/resources/ApiKeys/ApiKeysInterfaces.ts
Original file line number Diff line number Diff line change
@@ -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 {
/**
Expand Down Expand Up @@ -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

0 comments on commit 543e490

Please sign in to comment.