From e7ce93f7eaf5ca7c15d0911b2459e84f3be2f8e8 Mon Sep 17 00:00:00 2001
From: Jenna Antilla <46546946+jennantilla@users.noreply.github.com>
Date: Thu, 8 Feb 2024 10:03:20 -0800
Subject: [PATCH] Update Migration Guide
---
MIGRATION_GUIDE.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/MIGRATION_GUIDE.md b/MIGRATION_GUIDE.md
index 33ae5ba6..3234eb97 100644
--- a/MIGRATION_GUIDE.md
+++ b/MIGRATION_GUIDE.md
@@ -223,8 +223,8 @@ The User name space is accessible via `OneSignal.User` and provides access to us
| `OneSignal.User.removeTags(["KEY_01", "KEY_02"]);` | *Remove multiple tags with the provided keys from the current user.* |
| `OneSignal.User.getTags();` | *Returns the local tags for the current user.* |
| `OneSignal.User.addEventListener("change", (event: UserChangedState) => void);`
***See below for usage*** | *Add a User State callback which contains the nullable onesignalId and externalId. The listener will be fired when these values change.* |
-| `await OneSignal.User.getOnesignalId();` | *Returns the nullable OneSignal ID for the current user.* |
-| `await OneSignal.User.getExternalId();` | *Returns the nullable external ID for the current user.* |
+| `await OneSignal.User.getOnesignalId();` | *Returns the OneSignal ID for the current user, which can be the empty string if it is not yet available.* |
+| `await OneSignal.User.getExternalId();` | *Returns the External ID for the current user, which can be the empty string if not set.* |
### User State Listener