From 1cf2fafbca249dafde0e5af86df9a2f7b8d8b76e Mon Sep 17 00:00:00 2001 From: Alexander Sapountzis Date: Wed, 27 Nov 2024 09:29:48 -0500 Subject: [PATCH] Address PR Comments --- src/sdkRuntimeModels.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sdkRuntimeModels.ts b/src/sdkRuntimeModels.ts index 0b17838f..91379055 100644 --- a/src/sdkRuntimeModels.ts +++ b/src/sdkRuntimeModels.ts @@ -196,7 +196,7 @@ export interface MParticleWebSDK { getDeviceId(): string; setDeviceId(deviceId: string): void; setSessionAttribute(key: string, value: string): void; - getInstance(instanceName?: string): MParticleWebSDK; // TODO: Create a new type for MParticleWebSDKInstance + getInstance(instanceName?: string): MParticleWebSDK; // https://go.mparticle.com/work/SQDSDKS-4804 ServerModel(); upload(); setLogLevel(logLevel: LogLevelType): void; @@ -214,7 +214,7 @@ export interface MParticleWebSDK { ProductActionType: SDKProductActionType; generateHash(value: string): string; isIOS?: boolean; - sessionManager: Pick; + sessionManager: Pick; // https://go.mparticle.com/work/SQDSDKS-6949 } // Used in cases where server requires booleans as strings