54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import * as plugins from '../plugins.js';
|
|
import type * as authInterfaces from '../data/auth.js';
|
|
import type {
|
|
IGatewayCapabilities,
|
|
IWorkAppRouteOwnership,
|
|
IWorkAppRouteSyncResult,
|
|
IWorkHosterDomain,
|
|
} from '../data/workhoster.js';
|
|
import type { IDcRouterRouteConfig } from '../data/remoteingress.js';
|
|
|
|
export interface IReq_GetGatewayCapabilities extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_GetGatewayCapabilities
|
|
> {
|
|
method: 'getGatewayCapabilities';
|
|
request: {
|
|
identity?: authInterfaces.IIdentity;
|
|
apiToken?: string;
|
|
};
|
|
response: {
|
|
capabilities: IGatewayCapabilities;
|
|
};
|
|
}
|
|
|
|
export interface IReq_GetWorkHosterDomains extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_GetWorkHosterDomains
|
|
> {
|
|
method: 'getWorkHosterDomains';
|
|
request: {
|
|
identity?: authInterfaces.IIdentity;
|
|
apiToken?: string;
|
|
};
|
|
response: {
|
|
domains: IWorkHosterDomain[];
|
|
};
|
|
}
|
|
|
|
export interface IReq_SyncWorkAppRoute extends plugins.typedrequestInterfaces.implementsTR<
|
|
plugins.typedrequestInterfaces.ITypedRequest,
|
|
IReq_SyncWorkAppRoute
|
|
> {
|
|
method: 'syncWorkAppRoute';
|
|
request: {
|
|
identity?: authInterfaces.IIdentity;
|
|
apiToken?: string;
|
|
ownership: IWorkAppRouteOwnership;
|
|
route?: IDcRouterRouteConfig;
|
|
enabled?: boolean;
|
|
delete?: boolean;
|
|
};
|
|
response: IWorkAppRouteSyncResult;
|
|
}
|