From 4752d45e0eb78fc39697d5bf987c477a6216e37a Mon Sep 17 00:00:00 2001 From: Mikael Mengistu Date: Wed, 18 Jul 2018 15:47:52 -0700 Subject: [PATCH] Add the minorVersion field to the HandshakeResponse in the TS client for 3.0 (#2657) --- clients/ts/signalr/src/HandshakeProtocol.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/ts/signalr/src/HandshakeProtocol.ts b/clients/ts/signalr/src/HandshakeProtocol.ts index ba6906ef5f..eebc8fc57e 100644 --- a/clients/ts/signalr/src/HandshakeProtocol.ts +++ b/clients/ts/signalr/src/HandshakeProtocol.ts @@ -10,6 +10,7 @@ export interface HandshakeRequestMessage { export interface HandshakeResponseMessage { readonly error: string; + readonly minorVersion: number; } export class HandshakeProtocol {