fix(core): update

This commit is contained in:
Philipp Kunz 2023-04-10 14:04:13 +02:00
parent 267dca249f
commit 6ba521c1b9
2 changed files with 12 additions and 1 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@uptime.link/interfaces',
version: '2.0.11',
version: '2.0.12',
description: 'TypeScript interface for the uptime.link API and modules'
}

View File

@ -1,6 +1,17 @@
import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot {
registered: boolean;
delegation: {
domainWithoutSuffix: string;
publicSuffix: string;
subdomain: string;
isIcann: boolean;
dnsSecEnabled: boolean;
};
phishingFlags: {
listName: string;
}[];
nameservers: string[];
aRecords: plugins.tsclass.network.IDnsRecord[];
aaaaRecords: plugins.tsclass.network.IDnsRecord[];