Compare commits

...

2 Commits

Author SHA1 Message Date
806970c701 3.0.13 2024-02-23 20:18:20 +01:00
9638f74440 fix(core): update 2024-02-23 20:18:19 +01:00
3 changed files with 8 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@api.global/typedrequest-interfaces",
"version": "3.0.12",
"version": "3.0.13",
"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.12',
version: '3.0.13',
description: 'interfaces for making typed requests'
}

View File

@ -118,7 +118,12 @@ export interface IUnifiedStreamDataPackage {
keepAlive?: boolean;
/**
* is there more data scheduled to be sent?
* is backpressure detected on the readable side?
*/
backpressure?: boolean;
/**
* does the writable side have more data scheduled to be sent?
*/
next?: boolean;
}