2025-12-26 18:20:01 +00:00
|
|
|
import type { IDomainSnapshot } from '../data/domainsnapshot.js';
|
|
|
|
|
import type { ILinkSnapshot } from '../data/linksnapshot.js';
|
2023-04-03 17:12:01 +02:00
|
|
|
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;
|
2023-04-17 14:54:26 +02:00
|
|
|
linkSnapshot: ILinkSnapshot;
|
2023-04-17 13:48:32 +02:00
|
|
|
};
|
2023-04-03 17:12:01 +02:00
|
|
|
}
|