interfaces/ts/requests/identity.ts

24 lines
565 B
TypeScript
Raw Permalink Normal View History

2024-01-24 00:09:21 +00:00
import * as plugins from '../plugins.js';
import * as userInterfaces from '../data/user.js'
2024-01-23 22:38:10 +00:00
// ========
// IDENTITY
// ========
/**
* get the identity that then will be used to get the config
*/
export interface IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
2024-01-23 22:38:10 +00:00
extends plugins.typedrequestInterfaces.implementsTR<
plugins.typedrequestInterfaces.ITypedRequest,
IRequest_Any_Cloudly_CoreflowManager_GetIdentityByToken
2024-01-23 22:38:10 +00:00
> {
method: 'getIdentityByToken';
2024-01-23 22:38:10 +00:00
request: {
token: string;
2024-01-23 22:38:10 +00:00
};
response: {
identity: userInterfaces.IIdentity;
2024-01-23 22:38:10 +00:00
};
}