@isaac-platform/isaac-integration-sdk
Version:
A Typescript SDK for integrating with ISAAC
13 lines • 377 B
TypeScript
export type isaacLogEntry = {
createdByType: "user" | "subsystem";
createdBy?: string;
subsystemId?: string;
subsystemExternalId?: string;
host?: string;
key: string;
value: string;
severity: isaacLogLevels;
tags: string[];
};
export type isaacLogLevels = "debug" | "info" | "warn" | "error" | "critical";
//# sourceMappingURL=types.d.ts.map