Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
4d961003e8 | |||
24762468da | |||
4c57804da2 | |||
847f3a4f1c | |||
d5d896a91e | |||
53b732a3f7 |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.13",
|
"version": "2.0.16",
|
||||||
"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.13',
|
version: '2.0.16',
|
||||||
description: 'TypeScript interface for the uptime.link API and modules'
|
description: 'TypeScript interface for the uptime.link API and modules'
|
||||||
}
|
}
|
||||||
|
@ -3,8 +3,8 @@ import * as plugins from '../ul-interfaces.plugins.js';
|
|||||||
export interface IDomainSnapshot {
|
export interface IDomainSnapshot {
|
||||||
registration: {
|
registration: {
|
||||||
isRegistered: boolean;
|
isRegistered: boolean;
|
||||||
registeredAt: Date;
|
createionDate: number;
|
||||||
expiresAt: Date;
|
expiryDate: number;
|
||||||
};
|
};
|
||||||
delegation: {
|
delegation: {
|
||||||
domainWithoutSuffix: string;
|
domainWithoutSuffix: string;
|
||||||
@ -25,4 +25,4 @@ export interface IDomainSnapshot {
|
|||||||
serverUrl: string;
|
serverUrl: string;
|
||||||
content: string;
|
content: string;
|
||||||
}[];
|
}[];
|
||||||
}
|
}
|
||||||
|
@ -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