fix(core): update

This commit is contained in:
Philipp Kunz 2024-02-22 13:28:47 +01:00
parent a749f91a8f
commit 446a9d1723
2 changed files with 9 additions and 5 deletions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@api.global/typedrequest-interfaces', name: '@api.global/typedrequest-interfaces',
version: '3.0.7', version: '3.0.8',
description: 'interfaces for making typed requests' description: 'interfaces for making typed requests'
} }

View File

@ -83,12 +83,16 @@ export interface IStreamRequest extends implementsTR<
method: '##VirtualStream##'; method: '##VirtualStream##';
request: { request: {
streamId: string; streamId: string;
streamChunk: any; type: 'start' | 'binaryChunk' | 'object' | 'end' | 'keepAlive';
keepAlive: boolean; streamChunk?: any;
keepAlive?: boolean;
next?: boolean;
}; };
response: { response: {
streamId: string; streamId: string;
streamChunk: any; type: 'start' | 'binaryChunk' | 'object' | 'end' | 'keepAlive';
keepAlive: boolean; streamChunk?: any;
keepAlive?: boolean;
next?: boolean;
}; };
} }