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