Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
4c57804da2 | |||
847f3a4f1c | |||
d5d896a91e | |||
53b732a3f7 | |||
f7f75a64db | |||
2a0aa6db07 | |||
6a4849f87d | |||
6ba521c1b9 | |||
267dca249f | |||
0b8249a21f |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.10",
|
"version": "2.0.15",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "TypeScript interface for the uptime.link API and modules",
|
"description": "TypeScript interface for the uptime.link API and modules",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@uptime.link/interfaces',
|
name: '@uptime.link/interfaces',
|
||||||
version: '2.0.10',
|
version: '2.0.15',
|
||||||
description: 'TypeScript interface for the uptime.link API and modules'
|
description: 'TypeScript interface for the uptime.link API and modules'
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,21 @@
|
|||||||
import * as plugins from '../ul-interfaces.plugins.js';
|
import * as plugins from '../ul-interfaces.plugins.js';
|
||||||
|
|
||||||
export interface IDomainSnapshot {
|
export interface IDomainSnapshot {
|
||||||
|
registration: {
|
||||||
|
isRegistered: boolean;
|
||||||
|
createionDate: Date;
|
||||||
|
expiryDate: Date;
|
||||||
|
};
|
||||||
|
delegation: {
|
||||||
|
domainWithoutSuffix: string;
|
||||||
|
publicSuffix: string;
|
||||||
|
subdomain: string;
|
||||||
|
isIcann: boolean;
|
||||||
|
dnsSecEnabled: boolean;
|
||||||
|
};
|
||||||
|
phishingFlags: {
|
||||||
|
listName: string;
|
||||||
|
}[];
|
||||||
nameservers: string[];
|
nameservers: string[];
|
||||||
aRecords: plugins.tsclass.network.IDnsRecord[];
|
aRecords: plugins.tsclass.network.IDnsRecord[];
|
||||||
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
aaaaRecords: plugins.tsclass.network.IDnsRecord[];
|
||||||
|
@ -7,6 +7,4 @@ export * from './status.js';
|
|||||||
|
|
||||||
import * as checks from './checks/index.js';
|
import * as checks from './checks/index.js';
|
||||||
|
|
||||||
export {
|
export { checks };
|
||||||
checks
|
|
||||||
}
|
|
||||||
|
@ -12,5 +12,5 @@ export interface IReq_PerformDomainSnapshot
|
|||||||
};
|
};
|
||||||
response: {
|
response: {
|
||||||
domainSnapshot: IDomainSnapshot;
|
domainSnapshot: IDomainSnapshot;
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user