Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
6a4849f87d | |||
6ba521c1b9 | |||
267dca249f | |||
0b8249a21f | |||
cf4d90ecbd | |||
92d9f441d1 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@uptime.link/interfaces",
|
||||
"version": "2.0.9",
|
||||
"version": "2.0.12",
|
||||
"private": false,
|
||||
"description": "TypeScript interface for the uptime.link API and modules",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@uptime.link/interfaces',
|
||||
version: '2.0.9',
|
||||
version: '2.0.12',
|
||||
description: 'TypeScript interface for the uptime.link API and modules'
|
||||
}
|
||||
|
@ -1,10 +1,22 @@
|
||||
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[];
|
||||
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
||||
mxRecords: plugins.tsclass.network.IDnsRecord[];
|
||||
whoisServers: {
|
||||
serverUrl: string;
|
||||
content: string;
|
||||
|
Reference in New Issue
Block a user