10 Commits

Author SHA1 Message Date
5afbf16906 2.0.17 2023-04-17 13:56:55 +02:00
1ef7737dc9 fix(core): update 2023-04-17 13:56:55 +02:00
4d961003e8 2.0.16 2023-04-17 13:54:47 +02:00
24762468da fix(core): update 2023-04-17 13:54:47 +02:00
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
f7f75a64db 2.0.13 2023-04-10 14:09:21 +02:00
2a0aa6db07 fix(core): update 2023-04-10 14:09:21 +02:00
5 changed files with 11 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@uptime.link/interfaces", "name": "@uptime.link/interfaces",
"version": "2.0.12", "version": "2.0.17",
"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",

View File

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

View File

@ -1,7 +1,12 @@
import * as plugins from '../ul-interfaces.plugins.js'; import * as plugins from '../ul-interfaces.plugins.js';
export interface IDomainSnapshot { export interface IDomainSnapshot {
registered: boolean; registration: {
isRegistered: boolean;
updatedDate: number;
createdDate: number;
expiryDate: number;
};
delegation: { delegation: {
domainWithoutSuffix: string; domainWithoutSuffix: string;
publicSuffix: string; publicSuffix: string;
@ -21,4 +26,4 @@ export interface IDomainSnapshot {
serverUrl: string; serverUrl: string;
content: string; content: string;
}[]; }[];
} }

View File

@ -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
}

View File

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