From df2563f501abfd1cf572fba30c836762f43e184a Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 19 Jul 2022 17:16:37 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/data/index.ts | 3 +++ ts/data/property.ts | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index a37a24c..313bd34 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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' } diff --git a/ts/data/index.ts b/ts/data/index.ts index b457222..fd42ec5 100644 --- a/ts/data/index.ts +++ b/ts/data/index.ts @@ -1 +1,4 @@ +export * from './checks.js'; export * from './incident.js'; +export * from './property.js'; +export * from './status.js'; diff --git a/ts/data/property.ts b/ts/data/property.ts index d187529..d60a1c9 100644 --- a/ts/data/property.ts +++ b/ts/data/property.ts @@ -4,5 +4,6 @@ export class IProperty { name: string; type: 'website' | 'app' | 'api' | 'other'; access: 'private' | 'public' | 'auth'; + checkRefs: string[]; } \ No newline at end of file