Compare commits

...

2 Commits

Author SHA1 Message Date
a749f91a8f 3.0.7 2024-02-21 21:01:35 +01:00
8ea6db7b7f fix(core): update 2024-02-21 21:01:35 +01:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@api.global/typedrequest-interfaces",
"version": "3.0.6",
"version": "3.0.7",
"private": false,
"description": "interfaces for making typed requests",
"main": "dist_ts/index.js",

View File

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

View File

@ -84,11 +84,11 @@ export interface IStreamRequest extends implementsTR<
request: {
streamId: string;
streamChunk: any;
close: boolean;
keepAlive: boolean;
};
response: {
streamId: string;
streamChunk: any;
close: boolean;
keepAlive: boolean;
};
}