fix(core): update
This commit is contained in:
parent
a1cef67eee
commit
289ddfc153
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@uptime.link/interfaces',
|
name: '@uptime.link/interfaces',
|
||||||
version: '2.0.8',
|
version: '2.0.9',
|
||||||
description: 'TypeScript interface for the uptime.link API and modules'
|
description: 'TypeScript interface for the uptime.link API and modules'
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
export * from './requests.checks.js';
|
export * from './requests.checks.js';
|
||||||
export * from './requests.incidents.js';
|
export * from './requests.incidents.js';
|
||||||
|
export * from './requests.snapshot.js';
|
||||||
export * from './requests.status.js';
|
export * from './requests.status.js';
|
||||||
|
16
ts/requests/requests.snapshot.ts
Normal file
16
ts/requests/requests.snapshot.ts
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
import { IDomainSnapshot } from '../data/domainsnapshot.js';
|
||||||
|
import * as plugins from '../ul-interfaces.plugins.js';
|
||||||
|
|
||||||
|
export interface IReq_PerformDomainSnapshot
|
||||||
|
extends plugins.typedRequestInterfaces.implementsTR<
|
||||||
|
plugins.typedRequestInterfaces.ITypedRequest,
|
||||||
|
IReq_PerformDomainSnapshot
|
||||||
|
> {
|
||||||
|
method: 'performDomainSnapshot';
|
||||||
|
request: {
|
||||||
|
domainName: string;
|
||||||
|
};
|
||||||
|
response: {
|
||||||
|
domainSnapshot: IDomainSnapshot;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user