From 753a7e8356724fcc2830ca0168b7f69cd62a7b9c Mon Sep 17 00:00:00 2001 From: Emily Harber Date: Thu, 29 Apr 2021 15:22:08 -0400 Subject: [PATCH] Make isOnline required in SessionInterface --- src/auth/session/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/session/types.ts b/src/auth/session/types.ts index d4e71df22..30aa44850 100644 --- a/src/auth/session/types.ts +++ b/src/auth/session/types.ts @@ -4,9 +4,9 @@ export interface SessionInterface { readonly id: string; shop: string; state: string; + isOnline: boolean; scope?: string; expires?: Date; - isOnline?: boolean; accessToken?: string; onlineAccessInfo?: OnlineAccessInfo; isActive(): boolean;