4 Commits

Author SHA1 Message Date
4c57804da2 2.0.15 2023-04-17 13:48:33 +02:00
847f3a4f1c fix(core): update 2023-04-17 13:48:32 +02:00
d5d896a91e 2.0.14 2023-04-17 13:47:58 +02:00
53b732a3f7 fix(core): update 2023-04-17 13:47:58 +02:00
5 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@uptime.link/interfaces",
"version": "2.0.13",
"version": "2.0.15",
"private": false,
"description": "TypeScript interface for the uptime.link API and modules",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@uptime.link/interfaces',
version: '2.0.13',
version: '2.0.15',
description: 'TypeScript interface for the uptime.link API and modules'
}

View File

@ -3,8 +3,8 @@ import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot {
registration: {
isRegistered: boolean;
registeredAt: Date;
expiresAt: Date;
createionDate: Date;
expiryDate: Date;
};
delegation: {
domainWithoutSuffix: string;
@ -25,4 +25,4 @@ export interface IDomainSnapshot {
serverUrl: string;
content: string;
}[];
}
}

View File

@ -7,6 +7,4 @@ export * from './status.js';
import * as checks from './checks/index.js';
export {
checks
}
export { checks };

View File

@ -12,5 +12,5 @@ export interface IReq_PerformDomainSnapshot
};
response: {
domainSnapshot: IDomainSnapshot;
}
};
}