Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
f7f75a64db | |||
2a0aa6db07 | |||
6a4849f87d | |||
6ba521c1b9 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@uptime.link/interfaces",
|
||||
"version": "2.0.11",
|
||||
"version": "2.0.13",
|
||||
"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.11',
|
||||
version: '2.0.13',
|
||||
description: 'TypeScript interface for the uptime.link API and modules'
|
||||
}
|
||||
|
@ -1,6 +1,21 @@
|
||||
import * as plugins from '../ul-interfaces.plugins.js';
|
||||
|
||||
export interface IDomainSnapshot {
|
||||
registration: {
|
||||
isRegistered: boolean;
|
||||
registeredAt: Date;
|
||||
expiresAt: Date;
|
||||
};
|
||||
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[];
|
||||
|
Reference in New Issue
Block a user