diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 87114b3..a1c1f3a 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -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' } diff --git a/ts/index.ts b/ts/index.ts index d2ade94..91e550c 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -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; }; }