Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
2cf760d788 | |||
b9a23d5497 | |||
1c196ea31a | |||
d1088270bc |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.18",
|
"version": "2.0.20",
|
||||||
"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.18',
|
version: '2.0.20',
|
||||||
description: 'TypeScript interface for the uptime.link API and modules'
|
description: 'TypeScript interface for the uptime.link API and modules'
|
||||||
}
|
}
|
||||||
|
@ -17,11 +17,17 @@ export interface IDomainSnapshot {
|
|||||||
phishingFlags: {
|
phishingFlags: {
|
||||||
listName: string;
|
listName: string;
|
||||||
}[];
|
}[];
|
||||||
|
recordScans: {
|
||||||
|
identifier: 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[];
|
||||||
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
txtRecords: plugins.tsclass.network.IDnsRecord[];
|
||||||
mxRecords: plugins.tsclass.network.IDnsRecord[];
|
mxRecords: plugins.tsclass.network.IDnsRecord[];
|
||||||
|
specialRecords: {
|
||||||
|
dmarc: plugins.tsclass.network.IDnsRecord[];
|
||||||
|
}
|
||||||
|
}[]
|
||||||
whoisServers: {
|
whoisServers: {
|
||||||
serverUrl: string;
|
serverUrl: string;
|
||||||
content: string;
|
content: string;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
export * from './checkcollection.js';
|
export * from './checkcollection.js';
|
||||||
export * from './domainsnapshot.js';
|
export * from './domainsnapshot.js';
|
||||||
export * from './incident.js';
|
export * from './incident.js';
|
||||||
|
export * from './linksnapshot.js';
|
||||||
export * from './property.js';
|
export * from './property.js';
|
||||||
export * from './search.js';
|
export * from './search.js';
|
||||||
export * from './status.js';
|
export * from './status.js';
|
||||||
|
Reference in New Issue
Block a user