From 8ea6db7b7f007746b7f33e7403db6f321969a694 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 21 Feb 2024 21:01:35 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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; }; }