blob: f7594734daa57876f8c8e33cf2b5714b112e0a1b (
plain) (
tree)
|
|
import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes'
import { LogLevel } from '../../models/server/log-level.type'
import { AbstractCommand, OverrideCommandOptions } from '../shared'
export class LogsCommand extends AbstractCommand {
getLogs (options: OverrideCommandOptions & {
startDate: Date
endDate?: Date
level?: LogLevel
}) {
const { startDate, endDate, level } = options
const path = '/api/v1/server/logs'
return this.getRequestBody({
...options,
path,
query: { startDate, endDate, level },
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
getAuditLogs (options: OverrideCommandOptions & {
startDate: Date
endDate?: Date
}) {
const { startDate, endDate } = options
const path = '/api/v1/server/audit-logs'
return this.getRequestBody({
...options,
path,
query: { startDate, endDate },
defaultExpectedStatus: HttpStatusCode.OK_200
})
}
}
|