fix(core): update

This commit is contained in:
Philipp Kunz 2023-04-10 14:09:21 +02:00
parent 6a4849f87d
commit 2a0aa6db07
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -1,7 +1,11 @@
import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot {
registered: boolean;
registration: {
isRegistered: boolean;
registeredAt: Date;
expiresAt: Date;
};
delegation: {
domainWithoutSuffix: string;
publicSuffix: string;