fix(core): update

This commit is contained in:
Philipp Kunz 2020-07-13 01:13:29 +00:00
parent 38df866c05
commit 4161c8f8b0

View File

@ -1,19 +1,54 @@
export interface ITypedRequest {
/**
* the method that the request response data is meant for
*/
method: string;
/**
* any needed auth data
*/
authInfo?: {
jwt: string;
};
/**
* server data that is added for dealing with the request server side. Will be omitted when sending the response
*/
serverData?: {
jwtData: any;
jwtValid: boolean;
};
/**
* the request data
*/
request: object;
/**
* the response data
*/
response: object;
/**
* any error information that might be encountered while dealing with a request
*/
error?: { text: string; data: any };
/**
* retry information for smartly advising the client to retry at a later point in time
*/
retry?: {
waitForMs: number;
reason: string;
};
/**
* a correlation id that
*/
correlation?: {
id: string;
phase: 'request' | 'response'
};
}
export type implementsTR<T, U extends T> = {};