Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
5d7167b24a | |||
df2563f501 |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@apiglobal/typedrequest-interfaces": "^1.0.15",
|
"@apiglobal/typedrequest-interfaces": "^1.0.15",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@uptime.link/interfaces",
|
"name": "@uptime.link/interfaces",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"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",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@uptime.link/interfaces',
|
name: '@uptime.link/interfaces',
|
||||||
version: '2.0.1',
|
version: '2.0.2',
|
||||||
description: 'TypeScript interface for the uptime.link API and modules'
|
description: 'TypeScript interface for the uptime.link API and modules'
|
||||||
}
|
}
|
||||||
|
@ -1 +1,4 @@
|
|||||||
|
export * from './checks.js';
|
||||||
export * from './incident.js';
|
export * from './incident.js';
|
||||||
|
export * from './property.js';
|
||||||
|
export * from './status.js';
|
||||||
|
@ -4,5 +4,6 @@ export class IProperty {
|
|||||||
name: string;
|
name: string;
|
||||||
type: 'website' | 'app' | 'api' | 'other';
|
type: 'website' | 'app' | 'api' | 'other';
|
||||||
access: 'private' | 'public' | 'auth';
|
access: 'private' | 'public' | 'auth';
|
||||||
|
checkRefs: string[];
|
||||||
|
|
||||||
}
|
}
|
Reference in New Issue
Block a user