4 Commits

Author SHA1 Message Date
a1bf280a2f 2.0.3 2022-07-19 17:17:57 +02:00
3391e0cea3 fix(core): update 2022-07-19 17:17:57 +02:00
5d7167b24a 2.0.2 2022-07-19 17:16:37 +02:00
df2563f501 fix(core): update 2022-07-19 17:16:37 +02:00
6 changed files with 11 additions and 7 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@uptime.link/interfaces",
"version": "2.0.1",
"version": "2.0.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@uptime.link/interfaces",
"version": "2.0.1",
"version": "2.0.3",
"license": "MIT",
"dependencies": {
"@apiglobal/typedrequest-interfaces": "^1.0.15",

View File

@ -1,6 +1,6 @@
{
"name": "@uptime.link/interfaces",
"version": "2.0.1",
"version": "2.0.3",
"private": false,
"description": "TypeScript interface for the uptime.link API and modules",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@uptime.link/interfaces',
version: '2.0.1',
version: '2.0.3',
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[];
}

View File

@ -1,3 +1,3 @@
import * as checkRequests from './requests.checks.js';
export { checkRequests };
export * from './requests.checks.js';
export * from './requests.incidents.js';
export * from './requests.status.js';