@serve.zone/interfaces
Version:
interfaces for working with containers
15 lines (14 loc) • 540 B
TypeScript
import * as plugins from '../plugins.js';
import * as userInterfaces from '../data/user.js';
/**
* get the identity that then will be used to get the config
*/
export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken extends plugins.typedrequestInterfaces.implementsTR<plugins.typedrequestInterfaces.ITypedRequest, IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken> {
method: 'getIdentityByToken';
request: {
token: string;
};
response: {
identity: userInterfaces.IIdentity;
};
}