diff --git a/interface/src/scripting/AccountServicesScriptingInterface.h b/interface/src/scripting/AccountServicesScriptingInterface.h
index 3ad637d0e6..288137e166 100644
--- a/interface/src/scripting/AccountServicesScriptingInterface.h
+++ b/interface/src/scripting/AccountServicesScriptingInterface.h
@@ -46,6 +46,7 @@ class AccountServicesScriptingInterface : public QObject {
* @hifi-avatar
*
* @namespace AccountServices
+ *
* @property {string} username - The user name of the user logged in. If there is no user logged in, it is
* "Unknown user"
. Read-only.
* @property {boolean} loggedIn - true
if the user is logged in, otherwise false
.
@@ -61,6 +62,86 @@ class AccountServicesScriptingInterface : public QObject {
* — typically "https://metaverse.highfidelity.com"
. Read-only.
*/
+ /**jsdoc
+ * The Account
API provides functions that give information on user connectivity, visibility, and asset
+ * download progress.
+ *
+ * @deprecated This API is the same as the {@link AccountServices} API and will be removed.
+ *
+ * @hifi-interface
+ * @hifi-client-entity
+ * @hifi-avatar
+ *
+ * @namespace Account
+ *
+ * @property {string} username - The user name of the user logged in. If there is no user logged in, it is
+ * "Unknown user"
. Read-only.
+ * @property {boolean} loggedIn - true
if the user is logged in, otherwise false
.
+ * Read-only.
+ * @property {string} findableBy - The user's visibility to other users:
+ *
"none"
— user appears offline."friends"
— user is visible only to friends."connections"
— user is visible to friends and connections."all"
— user is visible to everyone."https://metaverse.highfidelity.com"
. Read-only.
+ *
+ * @borrows AccountServices.getDownloadInfo as getDownloadInfo
+ * @borrows AccountServices.updateDownloadInfo as updateDownloadInfo
+ * @borrows AccountServices.isLoggedIn as isLoggedIn
+ * @borrows AccountServices.checkAndSignalForAccessToken as checkAndSignalForAccessToken
+ * @borrows AccountServices.logOut as logOut
+ *
+ * @borrows AccountServices.connected as connected
+ * @borrows AccountServices.disconnected as disconnected
+ * @borrows AccountServices.myUsernameChanged as myUsernameChanged
+ * @borrows AccountServices.downloadInfoChanged as downloadInfoChanged
+ * @borrows AccountServices.findableByChanged as findableByChanged
+ * @borrows AccountServices.loggedInChanged as loggedInChanged
+ */
+
+ /**jsdoc
+ * The GlobalServices
API provides functions that give information on user connectivity, visibility, and asset
+ * download progress.
+ *
+ * @deprecated This API is the same as the {@link AccountServices} API and will be removed.
+ *
+ * @hifi-interface
+ * @hifi-client-entity
+ * @hifi-avatar
+ *
+ * @namespace GlobalServices
+ *
+ * @property {string} username - The user name of the user logged in. If there is no user logged in, it is
+ * "Unknown user"
. Read-only.
+ * @property {boolean} loggedIn - true
if the user is logged in, otherwise false
.
+ * Read-only.
+ * @property {string} findableBy - The user's visibility to other users:
+ * "none"
— user appears offline."friends"
— user is visible only to friends."connections"
— user is visible to friends and connections."all"
— user is visible to everyone."https://metaverse.highfidelity.com"
. Read-only.
+ *
+ * @borrows AccountServices.getDownloadInfo as getDownloadInfo
+ * @borrows AccountServices.updateDownloadInfo as updateDownloadInfo
+ * @borrows AccountServices.isLoggedIn as isLoggedIn
+ * @borrows AccountServices.checkAndSignalForAccessToken as checkAndSignalForAccessToken
+ * @borrows AccountServices.logOut as logOut
+ *
+ * @borrows AccountServices.connected as connected
+ * @borrows AccountServices.disconnected as disconnected
+ * @borrows AccountServices.myUsernameChanged as myUsernameChanged
+ * @borrows AccountServices.downloadInfoChanged as downloadInfoChanged
+ * @borrows AccountServices.findableByChanged as findableByChanged
+ * @borrows AccountServices.loggedInChanged as loggedInChanged
+ */
+
Q_PROPERTY(QString username READ getUsername NOTIFY myUsernameChanged)
Q_PROPERTY(bool loggedIn READ loggedIn NOTIFY loggedInChanged)
Q_PROPERTY(QString findableBy READ getFindableBy WRITE setFindableBy NOTIFY findableByChanged)