fix(core): update

This commit is contained in:
Philipp Kunz 2022-07-19 17:16:37 +02:00
parent ac8a8653e1
commit df2563f501
3 changed files with 5 additions and 1 deletions

View File

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

View File

@ -1 +1,4 @@
export * from './checks.js';
export * from './incident.js';
export * from './property.js';
export * from './status.js';

View File

@ -4,5 +4,6 @@ export class IProperty {
name: string;
type: 'website' | 'app' | 'api' | 'other';
access: 'private' | 'public' | 'auth';
checkRefs: string[];
}